-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
51 lines (46 loc) · 1022 Bytes
/
index.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
export interface Park {
id: string
name: string
entityType: string
slug: string
parentId: string
externalId: string
latitude: number
longitude: number
timeZone: string
}
export interface RideWaitTimes {
id: string
name: string
waitTime: number
active: boolean
fastPass: boolean
meta: RideWaitTimesMeta
status: RideWaitTimesStatus
lastUpdate: number
schedule: RideWaitTimesSchedule
}
export type RideWaitTimesStatus = 'Operating' | 'Closed' | 'Refurbishment' | 'Down'
export interface RideWaitTimesMeta {
type: string
fastPassStartTime?: string
fastPassEndTime?: string
singleRider: boolean
longitude: number
latitude: number
area?: string
entityId: string
}
export interface RideWaitTimesSchedule {
date: string
openingTime: string
closingTime: string
type: RideWaitTimesScheduleType
special: {
openingTime: number
closingTime: number
description: string
type: string
}[]
}
export type RideWaitTimesScheduleType = 'Operating' | 'Closed'