import { Nullable } from "@/helpers"; import { Internship, InternshipType } from "@/data"; export const emptyInternship: Nullable = { intern: null, endDate: null, startDate: null, type: null, program: null, isAccepted: false, lengthInWeeks: 0, }