@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
16 lines (15 loc) • 584 B
TypeScript
import { ColorBackground, Parameter, ImageBackground } from "./../index";
export interface AddBackgroundInterface {
colorBackground?: ColorBackground;
imageBackground?: ImageBackground;
}
export declare class AddBackground implements AddBackgroundInterface, Parameter {
colorBackground?: ColorBackground;
imageBackground?: ImageBackground;
constructor(data: any);
static getColorBackgroundDescription(): string;
static getImageBackgroundDescription(): string;
static fromJson(data: any): AddBackground;
toJson(): any;
clone(): AddBackground;
}