mirror of
https://github.com/ArthurDanjou/website-old.git
synced 2026-01-27 18:30:32 +01:00
💻 | Working on review
This commit is contained in:
40
@types/types.ts
Normal file
40
@types/types.ts
Normal file
@@ -0,0 +1,40 @@
|
||||
interface FormData {
|
||||
email: string,
|
||||
name: string
|
||||
}
|
||||
|
||||
interface InfoData {
|
||||
age: number
|
||||
hiring: {
|
||||
status: string,
|
||||
color: string
|
||||
}
|
||||
}
|
||||
|
||||
interface Skill {
|
||||
title: string,
|
||||
color: string,
|
||||
cover: string,
|
||||
slug: string
|
||||
}
|
||||
|
||||
interface Experience {
|
||||
slug: string,
|
||||
title: string,
|
||||
company: string,
|
||||
location: string,
|
||||
begin_date: string,
|
||||
end_date: string
|
||||
}
|
||||
|
||||
interface Formation {
|
||||
slug: string,
|
||||
title: string,
|
||||
description: string,
|
||||
location: string,
|
||||
begin_date: string,
|
||||
end_date: string
|
||||
}
|
||||
|
||||
|
||||
export { FormData, InfoData, Skill, Experience, Formation }
|
||||
Reference in New Issue
Block a user