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