hrms-mgt/src/interface/main.ts

27 lines
492 B
TypeScript
Raw Normal View History

interface DataOption {
id: string;
label: string;
}
interface FormProfile {
id: string;
avatar: string;
fullName: string;
position: string;
positionLevel: string;
organization: string;
}
2024-07-31 09:48:33 +07:00
interface RoleData {
attrOwnership: string;
attrIsCreate: boolean;
attrIsList: boolean;
attrIsGet: boolean;
attrIsUpdate: boolean;
attrIsDelete: boolean;
attrPrivilege: string;
authSysId: string;
parentNode: string;
}
export type { DataOption, FormProfile, RoleData };