@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
22 lines (21 loc) • 739 B
TypeScript
import { Parameter, AppearanceFileData } from "./../index";
export interface AppearancePdfInterface {
data: AppearanceFileData;
page?: number;
preserveAspectRatio?: boolean;
}
export declare class AppearancePdf implements AppearancePdfInterface, Parameter {
data: AppearanceFileData;
page?: number;
preserveAspectRatio?: boolean;
constructor(data: any);
static getDataDescription(): string;
static getPageDefault(): number;
static getPageDescription(): string;
static getPageMin(): number;
static getPreserveAspectRatioDefault(): boolean;
static getPreserveAspectRatioDescription(): string;
static fromJson(data: any): AppearancePdf;
toJson(): any;
clone(): AppearancePdf;
}