UNPKG

512 BTypeScriptView Raw
1// Type definitions for fancy-log 1.3
2// Project: https://github.com/gulpjs/fancy-log
3// Definitions by: Pine Mizune <https://github.com/pine>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6declare namespace FancyLog {
7 interface Logger {
8 (...args: any[]): Logger;
9 dir(...args: any[]): Logger;
10 error(...args: any[]): Logger;
11 info(...args: any[]): Logger;
12 warn(...args: any[]): Logger;
13 }
14}
15
16declare var logger: FancyLog.Logger;
17export = logger;