jspurefix
Version:
pure node js fix engine
10 lines (9 loc) • 443 B
TypeScript
/// <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;
}