hazelcast-client
Version:
Hazelcast - open source In-Memory Data Grid - client for NodeJS
14 lines (13 loc) • 443 B
TypeScript
/// <reference types="bluebird" />
import { SSLOptionsFactory } from './SSLOptionsFactory';
import { Properties } from '../config/Properties';
import * as Promise from 'bluebird';
export declare class BasicSSLOptionsFactory implements SSLOptionsFactory {
private servername;
private rejectUnauthorized;
private cert;
private ca;
private ciphers;
init(properties: Properties): Promise<void>;
getSSLOptions(): any;
}