From a3024cec94e2ef3eb34ac85f295dc6244336180f Mon Sep 17 00:00:00 2001 From: DABH Date: Fri, 2 Jun 2017 09:00:11 -0700 Subject: [PATCH] Winston: Make timestamp of GenericTextTransportOptions optional (#16846) --- types/winston/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/winston/index.d.ts b/types/winston/index.d.ts index d28a83b574..a189f03c22 100644 --- a/types/winston/index.d.ts +++ b/types/winston/index.d.ts @@ -400,7 +400,7 @@ declare namespace winston { label?: string; depth?: number; - timestamp: boolean | (() => string | boolean); + timestamp?: boolean | (() => string | boolean); stringify?(obj: any): string; }