-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathApp.types.ts
More file actions
36 lines (35 loc) · 790 Bytes
/
App.types.ts
File metadata and controls
36 lines (35 loc) · 790 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
export type HackerState = {
id: string;
email: string;
firstName: string;
lastName: string;
age: number;
gender: string;
ethnicity: string;
shirtSize: string;
schoolName: string;
major: string;
year: string;
schoolStanding: string;
dietaryRestrictions: string;
allergies: string;
numberOfPreviousHackathons: number;
resume: string;
linkedIn: string;
gitHub: string;
devpost: string;
otherSites: string;
teamCode: string;
teamName: string;
teammates: [string];
status: string;
codeOfConduct: boolean;
affiliationWithMLH: boolean;
photoPolicy: boolean;
};
export type TokenState = {
tokenType: string;
accessToken: string;
refreshToken: string;
expiresIn: string;
};