-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtype.d.ts
More file actions
30 lines (30 loc) · 755 Bytes
/
type.d.ts
File metadata and controls
30 lines (30 loc) · 755 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
export type Application = {
firstContact: string;
applied: string;
out: string;
ghostDate: string;
level: string;
position: string;
company: string;
payMin: string;
payMax: string;
decision: string;
notes: string | null;
appType: string;
type: string;
recruiterScreen: string | null;
managerScreen: string | null;
techInterview1: string | null;
techInterview2: string | null;
techInterview3: string | null;
panel: string | null;
ceo: string | null;
offer: string | null;
recruiterScreenTime: string | null;
managerScreenTime: string | null;
techInterview1Time: string | null;
techInterview2Time: string | null;
techInterview3Time: string | null;
panelTime: string | null;
ceoTime: string | null;
};