UNPKG

osm-api

Version:

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

11 lines (10 loc) β€’ 431 B
import type { OsmFeatureType } from "../../types"; import { type FetchOptions } from "../_osmFetch"; /** DWG only */ export declare function redactFeature({ featureType, featureId, featureVersion, redactionId, }: { featureType: OsmFeatureType; featureId: number; featureVersion: number; /** if undefined, the feature is un-redacted */ redactionId: number | undefined; }, options?: FetchOptions): Promise<void>;