4 lines
158 B
TypeScript
4 lines
158 B
TypeScript
|
import {Feature, Geometry} from "@turf/turf";
|
||
|
|
||
|
export type OsmTags = Record<string, string> & {id: string}
|
||
|
export type OsmFeature = Feature<Geometry, OsmTags>
|