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