@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
27 lines (26 loc) • 811 B
TypeScript
import { Parameter } from "./../index";
export interface HttpProxyInterface {
address?: string;
password?: string;
port?: number;
userName?: string;
}
export declare class HttpProxy implements HttpProxyInterface, Parameter {
address?: string;
password?: string;
port?: number;
userName?: string;
constructor(data: any);
static getAddressDefault(): string;
static getAddressDescription(): string;
static getPasswordDefault(): string;
static getPasswordDescription(): string;
static getPortDefault(): number;
static getPortDescription(): string;
static getPortMin(): number;
static getUserNameDefault(): string;
static getUserNameDescription(): string;
static fromJson(data: any): HttpProxy;
toJson(): any;
clone(): HttpProxy;
}