-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtypes.ts
More file actions
49 lines (43 loc) · 720 Bytes
/
types.ts
File metadata and controls
49 lines (43 loc) · 720 Bytes
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
export interface IInfo {
title: string;
author: string;
catchphrase: {
text: string;
description: string[];
};
}
export interface ILink {
icon: string;
text: string;
href: string;
}
export interface IProduct {
image: string;
title: string;
parts?: string[];
category?: string;
place?: string;
date?: string;
description?: string;
links?: ILink[];
}
export interface IStack {
name: string;
image: string;
skill: number;
color: string;
description: string;
}
export interface ISocial {
name: string;
icon: string;
href: string;
}
export interface INavigation {
name: string;
href: string;
}
export interface IAvatar {
image: string;
contain?: boolean;
}