UNPKG

osm-api

Version:

πŸ—ΊοΈπŸŒ Javascript/Typescript wrapper around the OpenStreetMap API

23 lines (22 loc) β€’ 467 B
export type OsmNoteComment = { date: string; uid: number; user: string; user_url: string; action: "opened" | "closed" | "commented" | "reopened"; text: string; html: string; }; export type OsmNote = { location: { lat: number; lng: number; }; id: number; status: "open" | "closed"; date_created: string; comments: OsmNoteComment[]; url: string; comment_url: string; close_url: string; };