@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
14 lines (13 loc) • 505 B
TypeScript
import { Parameter, SelectionAnnotation } from "./../index";
export interface SelectionRemoveInterface {
select?: Array<SelectionAnnotation>;
}
export declare class SelectionRemove implements SelectionRemoveInterface, Parameter {
select?: Array<SelectionAnnotation>;
constructor(data: any);
static getSelectDefault(): Array<SelectionAnnotation>;
static getSelectDescription(): string;
static fromJson(data: any): SelectionRemove;
toJson(): any;
clone(): SelectionRemove;
}