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