cv/src/PersonalDataTypes.ts

26 lines
402 B
TypeScript
Raw Normal View History

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,
jobs: Jobs,
skills: Skills,
interests: string[]
}