-
-
Notifications
You must be signed in to change notification settings - Fork 194
Expand file tree
/
Copy pathindex.ts
More file actions
32 lines (29 loc) · 708 Bytes
/
index.ts
File metadata and controls
32 lines (29 loc) · 708 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
export * from './plugin'
export * from './serverapi'
export * from './deltas'
export * from './coursetypes'
export * from './resourcetypes'
export * from './resourcesapi'
export * from './features'
export * from './course'
export * from './autopilotapi'
export * from './autopilotapi.guard'
export * from './propertyvalues'
export * from './brand'
export * from './weatherapi'
export * from './streambundle'
export * from './subscriptionmanager'
export * as history from './history'
export interface Position {
latitude: number
longitude: number
altitude?: number
}
export interface RelativePositionOrigin {
radius: number
position: Position
}
export enum SKVersion {
v1 = 'v1',
v2 = 'v2'
}