-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.ts
62 lines (53 loc) · 943 Bytes
/
schema.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
export type TImage = {
url: string
}
export type TProject = {
id: string
title: string
appType: string
description: string
technologiesUsed: Array<string>
repoUrl: string | null
projectUrl: string | null
projectCover: TImage
}
export type TTimelineItem = {
id: string
title: string
description: string
}
export type TTimeline = {
id: string
year: string
items: Array<TTimelineItem>
}
export type TBlogPost = {
id: string
createdAt: string
slug: string
title: string
tags: Array<string>
content: string
description: string
subtitle: string
postCover: TImage
}
export type TMyIntroduction = {
introduction: string
experienceHistory: string
}
type TSEO = {
pageTitle: string
description: string
}
export type TGraphqlIdentifier = {
__typename: string
}
export type TPage = {
seo?: TSEO,
content?: TGraphqlIdentifier[]
}
export enum ELocale {
PT_BR = 'pt-BR',
EN = 'en'
}