@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
14 lines (13 loc) • 467 B
TypeScript
import { ClusterCheckMode, Parameter } from "./../index";
export interface ClusterCheckInterface {
checkType: ClusterCheckMode;
}
export declare class ClusterCheck implements ClusterCheckInterface, Parameter {
checkType: ClusterCheckMode;
constructor(data: any);
static getCheckTypeDefault(): ClusterCheckMode;
static getCheckTypeDescription(): string;
static fromJson(data: any): ClusterCheck;
toJson(): any;
clone(): ClusterCheck;
}