// education.constants.ts import { EducationFormValues } from "../InnerEducationForm"; import { DegreeValue} from "../types"; export const EDUCATION_EMPTY_VALUES: EducationFormValues = { education: [ { degree: "", field: "", university: "", startYear: "", endYear: "", gpa: "", certificateImageId: "", description: "", }, ], } export const DEGREE_OPTIONS: Exclude[] = [ "زیر دیپلم", "دیپلم", "کاردانی", "کارشناسی", "کارشناسی ارشد", "دکتری", "حوزوی", "سایر", ];