refactor: add type of Employee

This commit is contained in:
Net 2024-08-05 16:45:46 +07:00
parent f56c445a15
commit 22093c5798

View file

@ -48,6 +48,9 @@ export type Employee = {
province: Province | null;
profileImageUrl: string | null;
customerBranch: CustomerBranch & { customer: Customer };
employeeWork?: EmployeeWorkCreate[];
employeeCheckup?: EmployeeCheckupCreate[];
employeeOtherInfo?: EmployeeOtherCreate;
};
export type EmployeeCreate = {