cv/src/PersonalDataTypes.ts

32 lines
490 B
TypeScript
Raw Normal View History

2023-05-25 19:01:22 +00:00
export type Contact = {
icon?: string,
text: string
}
export type Job = {
position: string,
company: string,
timerange: string,
description: string
}
export type Jobs = {
current?: Job,
previous?: Job[]
}
export type Skills = {
primary: string[],
secondary?: string[],
others?: string[]
}
export type PersonalData = {
name: string,
brief: string,
2023-05-25 19:01:22 +00:00
contacts: Contact[],
jobs: Jobs,
skills: Skills,
interests: string[]
}