Merge branch 'nice_dev' into develop

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-04-11 16:27:12 +07:00
commit 51bfb9d57e
4 changed files with 541 additions and 183 deletions

View file

@ -0,0 +1,21 @@
interface FormIndicators {
indicators: string;
target: number | null;
metricType: string;
calculation: string;
measuRement: string;
results: string;
obstacles: string;
suggestions: string;
}
interface FormProject {
isBudget: boolean;
isNoPass: boolean;
isOutBudget: boolean;
isPassAllocate: boolean;
isPassNoAllocate: boolean;
project: string;
}
export type { FormIndicators, FormProject };

View file

@ -0,0 +1,20 @@
interface DevelopmentEvaluations {
calculation: string;
createdAt: string;
createdFullName: string;
createdUserId: string;
developmentId: string;
id: string;
indicators: string;
lastUpdateFullName: string;
lastUpdateUserId: string;
lastUpdatedAt: string;
measuRement: string;
metricType: string;
obstacles: string;
results: string;
suggestions: string;
target: number | null;
}
export type { DevelopmentEvaluations };