12 lines
253 B
TypeScript
12 lines
253 B
TypeScript
import { Nullable } from "@/helpers";
|
|
import { Internship } from "@/data";
|
|
|
|
export const emptyInternship: Nullable<Internship> = {
|
|
endDate: null,
|
|
startDate: null,
|
|
type: null,
|
|
program: null,
|
|
isAccepted: false,
|
|
lengthInWeeks: 0,
|
|
}
|