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