@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
14 lines (13 loc) • 664 B
TypeScript
import { ExecutableName, ApplicationCheckInterface, ApplicationCheck, Parameter } from "./../index";
export interface ExecutableApplicationCheckInterface extends ApplicationCheckInterface {
executables?: Array<ExecutableName>;
}
export declare class ExecutableApplicationCheck extends ApplicationCheck implements ExecutableApplicationCheckInterface, Parameter {
executables?: Array<ExecutableName>;
constructor(data: any);
static getExecutablesDefault(): Array<ExecutableName>;
static getExecutablesDescription(): string;
static fromJson(data: any): ExecutableApplicationCheck;
toJson(): any;
clone(): ExecutableApplicationCheck;
}