@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
22 lines (21 loc) • 754 B
TypeScript
import { Parameter, ProviderConfigurationFormat } from "./../index";
export interface ProviderEntryInterface {
fileName?: string;
format?: ProviderConfigurationFormat;
name?: string;
}
export declare class ProviderEntry implements ProviderEntryInterface, Parameter {
fileName?: string;
format?: ProviderConfigurationFormat;
name?: string;
constructor(data: any);
static getFileNameDefault(): string;
static getFileNameDescription(): string;
static getFormatDefault(): ProviderConfigurationFormat;
static getFormatDescription(): string;
static getNameDefault(): string;
static getNameDescription(): string;
static fromJson(data: any): ProviderEntry;
toJson(): any;
clone(): ProviderEntry;
}