Dejvino's Curriculum Vitae
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

37 rader
599 B

  1. export type Contact = {
  2. icon?: string,
  3. text: string
  4. }
  5. export type Job = {
  6. position: string,
  7. company: string,
  8. timerange: string,
  9. description: string
  10. }
  11. export type Jobs = {
  12. current?: Job,
  13. previous?: Job[]
  14. }
  15. export type Education = Jobs;
  16. export type Skills = {
  17. primary: string[],
  18. secondary?: string[],
  19. languages?: string[],
  20. others?: string[]
  21. }
  22. export type PersonalData = {
  23. updatedDate: string,
  24. name: string,
  25. brief: string,
  26. contacts: Contact[],
  27. jobs: Jobs,
  28. education?: Education,
  29. skills: Skills,
  30. interests: string[]
  31. }