@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
18 lines (17 loc) • 589 B
TypeScript
import { InfoFormXfaMatch, Parameter } from "./../index";
export interface InfoFormXfaFieldInterface {
match?: InfoFormXfaMatch;
name?: string;
}
export declare class InfoFormXfaField implements InfoFormXfaFieldInterface, Parameter {
match?: InfoFormXfaMatch;
name?: string;
constructor(data: any);
static getMatchDefault(): InfoFormXfaMatch;
static getMatchDescription(): string;
static getNameDefault(): string;
static getNameDescription(): string;
static fromJson(data: any): InfoFormXfaField;
toJson(): any;
clone(): InfoFormXfaField;
}