-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.ts
72 lines (66 loc) · 1.18 KB
/
types.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
63
64
65
66
67
68
69
70
71
72
export type ProjectType = {
slug: string;
title: string;
link: string;
current: string;
past: string;
img: string;
screens: string[];
modified: string; // YYYY-MM-DD
intro: string;
tech: SkillsType[];
chall: string[];
homepage: boolean;
type: 'pro' | 'perso';
pen?: string;
sandbox?: string;
};
export type PostType = {
slug: string;
title: string;
intro: string;
img: string;
published: string; // YYYY-MM-DD
modified: string; // YYYY-MM-DD
categories: string; // '', '', ''
link: string;
url: string;
};
export type MonthCommitType = {
name: string;
commits: number;
};
export type YearCommitType = {
first: string;
latest: string;
commits: number;
repos: number;
months: MonthCommitType[];
};
export type CommitType = {
[year: number]: YearCommitType;
};
export type ThemeType = 'light' | 'dark' | '';
export type SkillsType =
| 'html'
| 'css'
| 'javascript'
| 'typescript'
| 'jquery'
| 'bootstrap'
| 'sass'
| 'angular'
| 'react'
| 'redux'
| 'material-ui'
| 'chakra-ui'
| 'styled-components'
| 'jest'
| 'mdx'
| 'i18n'
| 'node.js'
| 'firebase'
| 'mongo-db'
| 'c#'
| 'umbraco'
| 'next.js';