Moved types to folder

This commit is contained in:
Alexis
2026-03-24 21:51:58 +01:00
parent 5a52b08107
commit 2685a7c868
4 changed files with 44 additions and 41 deletions

13
src/types/Geo.ts Normal file
View File

@@ -0,0 +1,13 @@
export interface GeoPoint {
lon: number
lat: number
}
export interface GeoShape {
type: 'Feature'
geometry: {
coordinates: [number, number]
type: 'Point'
}
properties: Record<string, unknown>
}