UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

16 lines (15 loc) 571 B
import { BackgroundBaseSettings, Parameter, BackgroundFileData } from "./../index"; export interface ImageBackgroundInterface { image: BackgroundFileData; settings?: BackgroundBaseSettings; } export declare class ImageBackground implements ImageBackgroundInterface, Parameter { image: BackgroundFileData; settings?: BackgroundBaseSettings; constructor(data: any); static getImageDescription(): string; static getSettingsDescription(): string; static fromJson(data: any): ImageBackground; toJson(): any; clone(): ImageBackground; }