-
Notifications
You must be signed in to change notification settings - Fork 22
/
global.d.ts
217 lines (192 loc) · 3.96 KB
/
global.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
import '@react-navigation/native';
import type { SvgProps } from 'react-native-svg';
declare module '@react-navigation/native' {
export type ExtendedTheme = {
dark: boolean;
colors: {
primary: string;
secondary: string;
tertiary: string;
accent: string;
textLight: string;
tint: string;
secondaryTint: string;
tertiaryTint: string;
modalTint: string;
link: string;
bg: string;
background: string;
text: string;
border: string;
card: string;
notification: string;
bgInverse: string;
whiteConstant: string;
iconSwitch: string;
placeHolder: string;
borderColor: string;
assetAccent: string;
borderColorSecondary: string;
};
};
export type ThemeColors = {
[key in 'light' | 'dark']: Omit<ExtendedTheme['colors'], 'text' | 'border' | 'notification'>;
};
export function useTheme(): ExtendedTheme;
}
type Montserrat = {
bold: string;
regular: string;
medium: string;
semiBold: string;
light: string;
};
type Roboto = {
medium: string;
};
type Rubik = {
light: string;
};
export type Fonts = {
montserrat: Montserrat;
roboto: Roboto;
rubik: Rubik;
};
export type Typography = {
primary: Montserrat;
secondary: Roboto;
logo: Rubik;
};
export interface Feed {
title: string;
body: string;
topic: string;
url: string;
image: string;
created_at: string;
}
export interface IFeed {
data: Array<Feed>;
meta: Meta;
}
export interface IOrganizer {
id: number;
name: string;
email: string;
description: string;
facebook: string;
twitter: string;
instagram: null | string;
logo: string;
slug: string;
status: string;
created_at: string;
upcoming_events_count: number;
total_events_count: number;
}
export interface IOrganizers {
data: Array<IOrganizer>;
meta: Meta;
}
export interface ISchedule {
data: {
[key: string]: Array<SessionForSchedule>;
};
}
export interface Session {
title: string;
description: string;
slug: string;
session_format: string;
session_level: string;
is_keynote: boolean;
session_image: string | null;
speakers: Array<Speaker>;
}
export interface Room {
title: string;
id: number;
}
export interface SessionForSchedule extends Session {
id: number;
backgroundColor: string;
borderColor: string;
is_serviceSession: boolean;
is_bookmarked: boolean;
start_date_time: string;
start_time: string;
end_date_time: string;
end_time: string;
rooms: Array<Room>;
}
export interface ISessions {
data: Array<Session>;
meta: Meta;
}
export interface ScheduleSession {
data: SessionForSchedule;
}
export interface Speaker {
name: string;
tagline: string;
biography: string;
avatar: string;
twitter?: string | null;
facebook?: string | null;
linkedin?: string | null;
instagram?: string | null;
blog?: string | null;
company_website?: string | null;
}
export interface ISpeaker {
data: Array<Speaker>;
meta: Meta;
}
export interface ISponsor {
name: string;
tagline: string;
link: string;
sponsor_type: string;
logo: string;
created_at: string;
}
export interface ISponsors {
data: Array<ISponsor>;
}
export interface Meta {
paginator: Paginator;
}
export interface Paginator {
count: number;
per_page: string;
current_page: number;
next_page: string | null;
has_more_pages: boolean;
next_page_url: string | null;
previous_page_url: string | null;
}
export interface ISvgProps extends SvgProps {
xmlns?: string;
xmlnsXlink?: string;
xmlSpace?: string;
}
export interface IDateForDayButton {
day: string;
date: string;
key: string;
}
export type OrganizingTeamMember = {
name: string;
tagline: string;
link: string;
type: string;
bio: string;
twitter_handle: string;
designation: string;
photo: string;
created_at: string;
};
export interface IOrganizingTeam {
data: Array<OrganizingTeamMember>;
}
export interface IProfile extends OrganizingTeamMember, Speaker {}