From 3976d86aa1d0545bd93b02f5a3c2ab34e1b4d770 Mon Sep 17 00:00:00 2001 From: Alexander Cerutti Date: Tue, 28 May 2019 23:20:17 +0200 Subject: [PATCH] Improved FactoryOptions model --- src/factory.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/factory.ts b/src/factory.ts index f2ea1b0..f806f5c 100644 --- a/src/factory.ts +++ b/src/factory.ts @@ -11,7 +11,9 @@ const readDir = promisify(_readdir); const readFile = promisify(_readFile); interface FactoryOptions { - model: string | { [key: string]: Buffer }, + model: string | { + [key: string]: Buffer + }, certificates: Certificates; overrides?: Object; }