@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
20 lines (19 loc) • 745 B
TypeScript
import { WebserviceException, Parameter, InfoInterface, InfoFormField, Info } from "./../index";
export interface InfoFormInterface extends InfoInterface {
acroFormFields?: Array<InfoFormField>;
error?: WebserviceException;
value?: string;
}
export declare class InfoForm extends Info implements InfoFormInterface, Parameter {
acroFormFields?: Array<InfoFormField>;
error?: WebserviceException;
value?: string;
constructor(data: any);
static getAcroFormFieldsDefault(): Array<InfoFormField>;
static getAcroFormFieldsDescription(): string;
static getErrorDescription(): string;
static getValueDescription(): string;
static fromJson(data: any): InfoForm;
toJson(): any;
clone(): InfoForm;
}