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

23 lines
373 B
TypeScript
Raw Normal View History

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