diff --git a/frontend/app/types/internships.ts b/frontend/app/types/internships.ts index 3f438ed..da693f1 100644 --- a/frontend/app/types/internships.ts +++ b/frontend/app/types/internships.ts @@ -27,6 +27,13 @@ export interface NewInternship { position_description: string; }; +export interface InternshipFilter { + year: number | null; + company: string | null; + study_programe: string | null; + student: string | null; +}; + export function convertDate(date: string): Date { const matcher = /^\d\d.\d\d.\d\d\d\d$/;