@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
19 lines (18 loc) • 632 B
TypeScript
import { AppearancePdf, Parameter, AppearanceImage, AppearanceSvg } from "./../index";
export interface AppearanceSourceInterface {
image?: AppearanceImage;
pdf?: AppearancePdf;
svg?: AppearanceSvg;
}
export declare class AppearanceSource implements AppearanceSourceInterface, Parameter {
image?: AppearanceImage;
pdf?: AppearancePdf;
svg?: AppearanceSvg;
constructor(data: any);
static getImageDescription(): string;
static getPdfDescription(): string;
static getSvgDescription(): string;
static fromJson(data: any): AppearanceSource;
toJson(): any;
clone(): AppearanceSource;
}