hrms-admin/src/interface/main.ts

15 lines
245 B
TypeScript
Raw Normal View History

2024-05-29 17:58:57 +07:00
interface DataOption {
id: string;
label: string;
}
interface FormProfile {
id: string;
avatar: string;
fullName: string;
position: string;
positionLevel: string;
organization: string;
}
export type { DataOption, FormProfile };