22 lines
458 B
TypeScript
22 lines
458 B
TypeScript
interface RequestItemsObject {
|
|
educationLevel: string;
|
|
institute: string;
|
|
startYear: number;
|
|
endYear: number;
|
|
finishDate: Date;
|
|
startDate: Date;
|
|
endDate: Date;
|
|
isEducation: boolean | null;
|
|
degree: string;
|
|
field: string;
|
|
fundName: string;
|
|
gpa: string;
|
|
country: string;
|
|
other: string;
|
|
duration: string;
|
|
durationYear: number | null;
|
|
note: string;
|
|
}
|
|
|
|
export type { RequestItemsObject };
|
|
|