Files
framit/app/types/resume.ts

18 lines
425 B
TypeScript
Raw Normal View History

2025-11-19 22:03:35 +01:00
import type { TimelineItem } from '@nuxt/ui';
import type { Tool } from './tool';
2025-11-19 22:03:35 +01:00
export class ResumeExperience implements TimelineItem {
tools: Tool[] = [];
2025-11-19 22:03:35 +01:00
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: Tool[] = [];
devops: Tool[] = [];
os: Tool[] = [];
programmingLanguages: Tool[] = [];
frameworks: Tool[] = [];
2025-11-11 19:12:21 +01:00
}