UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

14 lines (13 loc) 474 B
import { Parameter } from "./../index"; export interface ConverterImageInterface { maintainAspectRatio?: boolean; } export declare class ConverterImage implements ConverterImageInterface, Parameter { maintainAspectRatio?: boolean; constructor(data: any); static getMaintainAspectRatioDefault(): boolean; static getMaintainAspectRatioDescription(): string; static fromJson(data: any): ConverterImage; toJson(): any; clone(): ConverterImage; }