hrms-mgt/src/modules/15_development/interface/request/FollowResult.ts

22 lines
421 B
TypeScript
Raw Normal View History

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