UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

13 lines (12 loc) 506 B
import { BaseToolbox, BaseToolboxInterface, ToolboxRotateRotate, Parameter } from "./../index"; export interface ToolboxRotateInterface extends BaseToolboxInterface { rotate?: ToolboxRotateRotate; } export declare class ToolboxRotate extends BaseToolbox implements ToolboxRotateInterface, Parameter { rotate?: ToolboxRotateRotate; constructor(data: any); static getRotateDescription(): string; static fromJson(data: any): ToolboxRotate; toJson(): any; clone(): ToolboxRotate; }