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