UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

14 lines (13 loc) 478 B
import { Parameter } from "./../index"; export interface CiphersHttpSettingsSSLInterface { cipher: Array<string>; } export declare class CiphersHttpSettingsSSL implements CiphersHttpSettingsSSLInterface, Parameter { cipher: Array<string>; constructor(data: any); static getCipherDefault(): Array<string>; static getCipherDescription(): string; static fromJson(data: any): CiphersHttpSettingsSSL; toJson(): any; clone(): CiphersHttpSettingsSSL; }