From 1ad6deec113f5590f37d32591d390838557e03c3 Mon Sep 17 00:00:00 2001 From: Steven Yackel Date: Thu, 20 Nov 2014 15:51:29 -0600 Subject: [PATCH] Added the missing addColors method from winston --- winston/winston.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/winston/winston.d.ts b/winston/winston.d.ts index d1f96095f..983f7cbbc 100644 --- a/winston/winston.d.ts +++ b/winston/winston.d.ts @@ -44,6 +44,7 @@ declare module "winston" { export function remove(transport: TransportInstance): LoggerInstance; export function startTimer(): ProfileHandler; export function profile(id: string, msg?: string, meta?: any, callback?: (err: Error, level: string, msg: string, meta: any) => void): LoggerInstance; + export function addColors(target: any): any; export function setLevels(target: any): any; export function cli(): LoggerInstance;