UNPKG

wikibase-edit

Version:

Edit Wikibase from NodeJS

16 lines 391 B
import { type EntityId, type EntityPageTitle } from 'wikibase-sdk'; export interface DeleteEntityParams { id: EntityId; } export declare function deleteEntity(params: any): { action: string; data: { title: EntityId; }; }; export interface DeleteEntityResponse { title: EntityPageTitle; reason: string; logid: number; } //# sourceMappingURL=delete.d.ts.map