From 7d0466f1ee8dfaece2ee487d44827e17edbd7547 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tommy=20M=C3=B6nnich?= Date: Tue, 22 Sep 2020 10:26:42 +0200 Subject: [PATCH] Add mising handleRejections in logger options In the future this should extend from a subset of `TransportStream` in https://github.com/winstonjs/winston-transport/blob/master/index.d.ts --- index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/index.d.ts b/index.d.ts index 027379c39..33a99c68e 100644 --- a/index.d.ts +++ b/index.d.ts @@ -83,6 +83,7 @@ declare namespace winston { defaultMeta?: any; transports?: Transport[] | Transport; handleExceptions?: boolean; + handleRejections?: boolean; exceptionHandlers?: any; }