@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
13 lines (12 loc) • 476 B
TypeScript
import { SelectionBackground, Parameter } from "./../index";
export interface RemoveBackgroundInterface {
backgroundSelection?: SelectionBackground;
}
export declare class RemoveBackground implements RemoveBackgroundInterface, Parameter {
backgroundSelection?: SelectionBackground;
constructor(data: any);
static getBackgroundSelectionDescription(): string;
static fromJson(data: any): RemoveBackground;
toJson(): any;
clone(): RemoveBackground;
}