osm-api
Version:
πΊοΈπ Javascript/Typescript wrapper around the OpenStreetMap API
5 lines (4 loc) β’ 379 B
TypeScript
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>;