2025-11-19 22:03:35 +01:00
|
|
|
import type { TimelineItem } from '@nuxt/ui';
|
|
|
|
|
|
|
|
|
|
export class ResumeExperience implements TimelineItem {
|
|
|
|
|
tools: string[] = [];
|
|
|
|
|
description?: string;
|
2025-11-11 19:12:21 +01:00
|
|
|
}
|
|
|
|
|
|
2025-11-19 22:03:35 +01:00
|
|
|
export class ResumeContent {
|
|
|
|
|
experience: ResumeExperience[] = [];
|
|
|
|
|
education: TimelineItem[] = [];
|
|
|
|
|
otherTools: string[] = [];
|
|
|
|
|
devops: string[] = [];
|
|
|
|
|
os: string[] = [];
|
|
|
|
|
programmingLanguages: string[] = [];
|
|
|
|
|
frameworks: string[] = [];
|
2025-11-11 19:12:21 +01:00
|
|
|
}
|