Reformat all files with prettier

This commit is contained in:
Pieter Vander Vennet 2022-09-08 21:40:48 +02:00
parent e22d189376
commit b541d3eab4
382 changed files with 50893 additions and 35566 deletions

View file

@ -1,9 +1,9 @@
import {Feature, Geometry} from "@turf/turf";
import { Feature, Geometry } from "@turf/turf"
export type RelationId = `relation/${number}`
export type WayId = `way/${number}`
export type NodeId = `node/${number}`
export type OsmId = NodeId | WayId | RelationId
export type OsmTags = Record<string, string> & {id: string}
export type OsmFeature = Feature<Geometry, OsmTags>
export type OsmTags = Record<string, string> & { id: string }
export type OsmFeature = Feature<Geometry, OsmTags>