mirror of
https://github.com/kennethnym/freya
synced 2026-06-19 16:11:18 +01: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
|
||
|
|
}
|