refactor: extend Internship type to support a user object

This commit is contained in:
Veronika Fehérvíziová
2025-10-31 20:43:45 +01:00
parent 1ae81221a5
commit 0b62795a6a

View File

@@ -1,9 +1,11 @@
import type { CompanyData } from "./company_data";
import type { InternshipStatusData } from "./internship_status";
import type { User } from "./user";
export interface Internship {
id: number;
user_id: string;
user_id?: string;
user?: User;
company: CompanyData;
start: string;
end: string;