Files
aris/packages/aris-core/context.ts

11 lines
137 B
TypeScript
Raw Normal View History

2026-01-16 00:56:55 +00:00
export interface Location {
lat: number
lng: number
accuracy: number
}
export interface Context {
time: Date
location?: Location
}