UNPKG

jspurefix

Version:
15 lines (13 loc) 444 B
import { ConnectionOptions, TlsOptions } from 'tls' export interface ITlsOptions { readonly key?: string readonly cert?: string readonly ca?: string[] readonly timeout?: number readonly sessionTimeout?: number readonly enableTrace?: boolean readonly requestCert?: boolean readonly rejectUnauthorized?: boolean readonly nodeTlsConnectionOptions?: ConnectionOptions readonly nodeTlsServerOptions?: TlsOptions }