แก้ประเมิน step 1

This commit is contained in:
Warunee Tamkoo 2023-12-23 16:21:10 +07:00
parent 3487ae71bb
commit 86ba9053a7
7 changed files with 473 additions and 299 deletions

View file

@ -14,4 +14,30 @@ interface FormCommandRef {
[key: string]: any;
}
export type { FormCommand, FormCommandRef };
interface EducationForm {
country: string;
degree: string;
duration: string;
durationYear: number;
educationLevel: string;
endDate: Date;
field: string;
finishDate: Date;
fundName: string;
gpa: string;
institute: string;
isDate: boolean;
isEducation: boolean;
other: string;
startDate: Date;
}
interface CertificatesForm {
certificateNo: string;
certificateType: string;
expireDate: Date;
issueDate: Date;
issuer: string;
}
export type { FormCommand, FormCommandRef, EducationForm, CertificatesForm };