-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypings.d.ts
147 lines (128 loc) · 2.15 KB
/
typings.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
interface MusicList {
__typename: string;
meta: Meta;
data: Music[];
}
interface TransactionList {
__typename: string;
meta: Meta;
data: Transaction[];
}
interface Transaction {
id: number;
user: User;
music: Music;
}
interface Music {
__typename: string;
id: number;
name: string;
content: string;
hash: string;
cover: string;
price: number;
limit: number;
play: Play;
album: Album;
}
interface Play {
__typename: string;
count: number;
}
interface Album {
__typename: string;
id: number;
name: string;
cover: string;
artist: mArtist;
createdAt?: string;
}
interface mArtist {
__typename: string;
user: User;
description: string;
name: string;
}
interface User {
__typename: string;
wallet: string;
}
interface Artist {
id: number;
name: string;
avatar: string;
musics: Music[];
createdAt?: string;
musicCount?: number;
}
interface ListAlbum {
meta: Meta;
data: Album[];
}
interface Meta {
totalItems: number;
limit: number;
page: number;
totalPages: string;
}
interface User extends BaseInfo {
userName: string;
password: string;
email: string;
profileImage?: string;
birthDate: number;
playLists: PlayList[];
recent: Music[];
favorite: Music[];
}
interface PlayList extends BaseInfo {
title: string;
description?: string;
color: string;
avatar?: string;
musics: Music[];
}
interface SidebarLinkInfo {
id: number;
title: string;
links: SidebarLink[];
}
interface SidebarLink {
id: number;
title: string;
href: string;
icon: (typeof iconsName)[number];
child: boolean;
}
interface AuthLocalStorage {
set_at: number;
token: string;
id: string;
}
interface AppLocalStorage {
currentMusic: Music;
isPlaying: boolean;
playList: Music[];
playListId: string;
volume: number;
currentMusicTime: number;
repeatType: RepeatType;
shuffleIndex: number[];
}
type PasswordStrength =
| "very weak"
| "weak"
| "moderate"
| "strong"
| "powerfull";
type ButtonType =
| "primary"
| "primary-outline"
| "primary-flat"
| "secondary"
| "secondary-outline"
| "secondary-flat"
| "danger";
interface Window {
ethereum: any;
}