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

@ -9,6 +9,16 @@ interface FormPerson {
statusMarital?: string;
}
interface ChildrenFamily {
id: string;
childrenPrefixId: string | null;
childrenFirstName: string | null;
childrenLastName: string | null;
childrenCareer: string | null;
childrenLive: string | null;
childrenCitizenId: string | null;
}
interface FormChildren {
id: string;
createdAt: string;
@ -27,4 +37,4 @@ interface FormChildren {
profileEmployeeId: string | null;
}
export type { FormPerson, FormChildren };
export type { FormPerson, FormChildren, ChildrenFamily };