@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
13 lines (12 loc) • 467 B
TypeScript
import { Parameter, SelectionRemove } from "./../index";
export interface RemoveToolboxAnnotationInterface {
selection: SelectionRemove;
}
export declare class RemoveToolboxAnnotation implements RemoveToolboxAnnotationInterface, Parameter {
selection: SelectionRemove;
constructor(data: any);
static getSelectionDescription(): string;
static fromJson(data: any): RemoveToolboxAnnotation;
toJson(): any;
clone(): RemoveToolboxAnnotation;
}