hrms-user/src/modules/08_KPI/interface/request/index.ts

22 lines
371 B
TypeScript
Raw Normal View History

2024-04-09 15:22:23 +07:00
interface FormProfile {
fullName: string;
2024-04-09 15:22:23 +07:00
position: string;
type: string;
level: string;
status: string | undefined;
result: string | undefined;
2024-04-09 15:22:23 +07:00
score: string;
avartar: string;
2024-04-09 15:22:23 +07:00
}
interface FormDataAssigned {
indicator: string;
target: string;
unit: string;
weigth: string;
definition: string;
2024-04-09 15:22:23 +07:00
}
export type { FormProfile, FormDataAssigned };