mapcomplete/Models/OsmFeature.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

4 lines
158 B
TypeScript
Raw Normal View History

2022-07-13 17:56:10 +02:00
import {Feature, Geometry} from "@turf/turf";
export type OsmTags = Record<string, string> & {id: string}
2022-07-13 17:56:10 +02:00
export type OsmFeature = Feature<Geometry, OsmTags>