@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
18 lines (17 loc) • 632 B
TypeScript
import { ServerCheck, Parameter, ServerCheckInterface } from "./../index";
export interface UserServerCheckInterface extends ServerCheckInterface {
name?: string;
password?: string;
}
export declare class UserServerCheck extends ServerCheck implements UserServerCheckInterface, Parameter {
name?: string;
password?: string;
constructor(data: any);
static getNameDefault(): string;
static getNameDescription(): string;
static getPasswordDefault(): string;
static getPasswordDescription(): string;
static fromJson(data: any): UserServerCheck;
toJson(): any;
clone(): UserServerCheck;
}