mapcomplete/Models/OsmFeature.ts
2022-07-13 17:56:33 +02:00

4 lines
No EOL
158 B
TypeScript

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