Moved types to folder
This commit is contained in:
13
src/types/Geo.ts
Normal file
13
src/types/Geo.ts
Normal 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>
|
||||
}
|
||||
Reference in New Issue
Block a user