UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

16 lines (15 loc) 600 B
import { Parameter, ProtocolsHttpSettingsSSL, CiphersHttpSettingsSSL } from "./../index"; export interface HttpSettingsSSLInterface { ciphers?: CiphersHttpSettingsSSL; protocols?: ProtocolsHttpSettingsSSL; } export declare class HttpSettingsSSL implements HttpSettingsSSLInterface, Parameter { ciphers?: CiphersHttpSettingsSSL; protocols?: ProtocolsHttpSettingsSSL; constructor(data: any); static getCiphersDescription(): string; static getProtocolsDescription(): string; static fromJson(data: any): HttpSettingsSSL; toJson(): any; clone(): HttpSettingsSSL; }