fixing remove import file

This commit is contained in:
Warunee Tamkoo 2024-11-21 16:58:49 +07:00
parent e541bbb6d2
commit ed683d0bb3
24 changed files with 201 additions and 831 deletions

View file

@ -46,6 +46,25 @@ interface DocList {
fileName: string;
}
interface FormAddPerson {
birthDate: Date | null;
prefix: string;
firstName: string;
lastName: string;
citizenId: string;
age: string | null;
genderId: string | null;
bloodId: string | null;
nationality: string | null;
ethnicity: string | null;
statusId: string | null;
religionId: string | null;
tel: string | null;
employeeType: string | null;
employeeClass: string | null;
profileType: string | null;
}
const defaultInformation: Information = {
cardid: null,
age: null,
@ -73,4 +92,5 @@ export type {
DataOptioninfo,
DocList,
InformationOps,
FormAddPerson,
};