UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

30 lines (29 loc) 903 B
import { SchemaValue, Parameter } from "./../index"; export interface SchemaEntryInterface { key?: string; name?: string; order?: number; type?: SchemaValue; visible?: boolean; } export declare class SchemaEntry implements SchemaEntryInterface, Parameter { key?: string; name?: string; order?: number; type?: SchemaValue; visible?: boolean; constructor(data: any); static getKeyDefault(): string; static getKeyDescription(): string; static getNameDefault(): string; static getNameDescription(): string; static getOrderDefault(): number; static getOrderDescription(): string; static getTypeDefault(): SchemaValue; static getTypeDescription(): string; static getVisibleDefault(): boolean; static getVisibleDescription(): string; static fromJson(data: any): SchemaEntry; toJson(): any; clone(): SchemaEntry; }