mirror of
https://github.com/kennethnym/aris.git
synced 2026-02-02 05:01:17 +00:00
11 lines
137 B
TypeScript
11 lines
137 B
TypeScript
|
|
export interface Location {
|
||
|
|
lat: number
|
||
|
|
lng: number
|
||
|
|
accuracy: number
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface Context {
|
||
|
|
time: Date
|
||
|
|
location?: Location
|
||
|
|
}
|