-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathTypes.d.ts
57 lines (53 loc) · 805 Bytes
/
Types.d.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
type WrapperProps = {
pageIndex: number
children: React.ReactNode
className? : string
}
type NavLink = {
path: string;
label: string;
};
type Skills = {
name: string;
level: number;
};
type SkillBarProps = {
skills: Skills[];
};
type ProjectProps = {
id: number;
img: string;
name: string;
tools: string[];
};
type CountUpProps = {
start: number
end: number
duration: number
}
type countUpItemsProps = {
id: number;
number: number;
text: string;
};
type ServiceProps = {
id: number;
title: string;
icon: React.ReactNode;
finished: number;
};
type ContactsProps = {
id: number;
title: string;
text: string;
};
export {
WrapperProps,
CountUpProps,
NavLink,
SkillBarProps,
countUpItemsProps,
ProjectProps,
ServiceProps,
ContactsProps,
};