@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
10 lines (9 loc) • 414 B
TypeScript
import { ServerCheck, Parameter, ServerCheckInterface } from "./../index";
export interface TrustStoreServerCheckInterface extends ServerCheckInterface {
}
export declare class TrustStoreServerCheck extends ServerCheck implements TrustStoreServerCheckInterface, Parameter {
constructor(data: any);
static fromJson(data: any): TrustStoreServerCheck;
toJson(): any;
clone(): TrustStoreServerCheck;
}