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