From 3a9f9c0d582babd68bc9408c884216c639398a86 Mon Sep 17 00:00:00 2001 From: Andrej Date: Mon, 1 Dec 2025 19:36:09 +0100 Subject: [PATCH] feat: add InternshipFilter interface --- frontend/app/types/internships.ts | 7 +++++++ 1 file changed, 7 insertions(+) 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$/;