hrms-mgt/src/modules/15_development/interface/request/FollowResult.ts
2024-04-11 16:26:54 +07:00

21 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 };