UNPKG

osm-api

Version:

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

5 lines (4 loc) β€’ 379 B
import { type FetchOptions } from "../_osmFetch"; export declare function createNote(lat: number, lng: number, text: string, options?: FetchOptions): Promise<void>; export declare function commentOnNote(nodeId: number, text: string, options?: FetchOptions): Promise<void>; export declare function reopenNote(nodeId: number, text?: string, options?: FetchOptions): Promise<void>;