UNPKG

jspurefix

Version:
10 lines (9 loc) 443 B
/// <reference types="node" /> import { ConnectionOptions, TlsOptions } from 'tls'; import { ITlsOptions } from './tls-options'; import { ITcpTransportDescription } from './tcp-transport-description'; export declare class TlsOptionsFactory { static read(filePath: string): string; static getTlsOptions(tls: ITlsOptions): TlsOptions | null; static getTlsConnectionOptions(tcp: ITcpTransportDescription): ConnectionOptions | null; }