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