@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
22 lines (21 loc) • 669 B
TypeScript
import { Parameter } from "./../index";
export interface DescriptionCustomInterface {
key?: string;
remove?: boolean;
value?: string;
}
export declare class DescriptionCustom implements DescriptionCustomInterface, Parameter {
key?: string;
remove?: boolean;
value?: string;
constructor(data: any);
static getKeyDefault(): string;
static getKeyDescription(): string;
static getRemoveDefault(): boolean;
static getRemoveDescription(): string;
static getValueDefault(): string;
static getValueDescription(): string;
static fromJson(data: any): DescriptionCustom;
toJson(): any;
clone(): DescriptionCustom;
}