UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

18 lines (17 loc) 628 B
import { ExecutableStatusState, Parameter } from "./../index"; export interface ExecutableStatusInterface { enabled?: boolean; status?: ExecutableStatusState; } export declare class ExecutableStatus implements ExecutableStatusInterface, Parameter { enabled?: boolean; status?: ExecutableStatusState; constructor(data: any); static getEnabledDefault(): boolean; static getEnabledDescription(): string; static getStatusDefault(): ExecutableStatusState; static getStatusDescription(): string; static fromJson(data: any): ExecutableStatus; toJson(): any; clone(): ExecutableStatus; }