Update config.d.ts

Signed-off-by: Gauthier Roebroeck <gauthier.roebroeck@gmail.com>
This commit is contained in:
Gauthier
2021-11-16 17:45:35 +08:00
committed by Gauthier Roebroeck
parent fe20e6f4a8
commit f4fe544f73
+2 -2
View File
@@ -31,10 +31,10 @@ export interface Config {
*/
ssl?:
| {
ca: string[];
ca?: string[];
/** @visibility secret */
key?: string;
cert: string;
cert?: string;
rejectUnauthorized?: boolean;
}
| boolean;