@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
14 lines (13 loc) • 391 B
TypeScript
import { Parameter, InfoType } from "./../index";
export interface InfoInterface {
infoType: InfoType;
}
export declare class Info implements InfoInterface, Parameter {
infoType: InfoType;
constructor(data: any);
static getInfoTypeDefault(): InfoType;
static getInfoTypeDescription(): string;
static fromJson(data: any): Info;
toJson(): any;
clone(): Info;
}