feat: add InternshipFilter interface

This commit is contained in:
Andrej
2025-12-01 19:36:09 +01:00
parent 4a26fa82d3
commit 3a9f9c0d58

View File

@@ -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$/;