Fix build problem

This commit is contained in:
2021-08-24 13:01:54 +02:00
parent 232d951f47
commit e181b85532
7 changed files with 8 additions and 64 deletions

View File

@@ -5,39 +5,6 @@ interface Form {
subject: 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
}
interface Tag {
slug: string
}
@@ -52,36 +19,14 @@ interface Post {
date: string
}
interface Project {
slug: string,
title: string,
description: string,
url: string,
cover: string,
tags: Array<Tag>,
}
interface NewsletterForm {
email: string
}
interface Translation {
code: string,
english: string,
french: string
}
interface State {
opened: boolean,
route: string,
email: string
}
interface Announce {
color: string,
hover_color: string,
translation: Translation
file: null
}
export { Form, InfoData, Skill, Experience, Formation, Post, Tag, Project, NewsletterForm, Translation, State, Announce }
export { Form, Post, Tag, NewsletterForm, State }