From 7966c201148ff8d16ac2110c85debef2ded87260 Mon Sep 17 00:00:00 2001 From: Vladlen Date: Sat, 29 Dec 2018 21:57:05 +1100 Subject: [PATCH] fix(types): Add missing child() method --- index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.d.ts b/index.d.ts index f788cfd74..8a06f5c55 100644 --- a/index.d.ts +++ b/index.d.ts @@ -123,6 +123,8 @@ declare namespace winston { profile(id: string | number, meta?: LogEntry): Logger; configure(options: LoggerOptions): void; + + child(options: Object): Logger; new(options?: LoggerOptions): Logger; }