From 40437e62751d53bb253c8df03445b24e97326296 Mon Sep 17 00:00:00 2001 From: Alexander Cerutti Date: Sat, 5 Sep 2020 22:34:13 +0200 Subject: [PATCH] Setted Certificates to accept signerKey also as a string --- src/schema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/schema.ts b/src/schema.ts index af9bc6a..51399ed 100644 --- a/src/schema.ts +++ b/src/schema.ts @@ -13,7 +13,7 @@ export interface Certificates { signerKey?: { keyFile: string; passphrase?: string; - }; + } | string; } export interface FactoryOptions {