fixed visibility annotation in config

This commit is contained in:
Nir Gazit
2021-01-19 22:08:57 +02:00
parent 9c3eda7c6f
commit 5edf0ad930
+1 -2
View File
@@ -27,11 +27,10 @@ export interface Config {
/**
* Optional SSL connection parameters to connect to the cluster. Passed directly to Node tls.connect.
* See https://nodejs.org/dist/latest-v8.x/docs/api/tls.html#tls_tls_createsecurecontext_options
*
* @visibility secret
*/
ssl?: {
ca: string[];
/** @visibility secret */
key: string;
cert: string;
};