22 lines
421 B
TypeScript
22 lines
421 B
TypeScript
|
|
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 };
|