@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
18 lines (17 loc) • 529 B
TypeScript
import { Parameter, PageBox } from "./../index";
export interface SelectionBoxInterface {
box?: PageBox;
pages?: string;
}
export declare class SelectionBox implements SelectionBoxInterface, Parameter {
box?: PageBox;
pages?: string;
constructor(data: any);
static getBoxDefault(): PageBox;
static getBoxDescription(): string;
static getPagesDefault(): string;
static getPagesDescription(): string;
static fromJson(data: any): SelectionBox;
toJson(): any;
clone(): SelectionBox;
}