import {Ice} from 'ice'; import '../Ice/Connection'; declare module './IceSSL.ns' { namespace IceSSL { /** * Provides access to the connection details of an SSL connection */ class ConnectionInfo extends Ice.ConnectionInfo { constructor( underlying?: Ice.ConnectionInfo | null, incoming?: boolean, adapterName?: string, connectionId?: string, cipher?: string, certs?: Ice.StringSeq, verified?: boolean, ); cipher: string; certs: Ice.StringSeq; verified: boolean; } } } export {IceSSL} from './IceSSL.ns';