1 | export declare enum Level {
|
2 | WARN = -1,
|
3 | QUIET = 0,
|
4 | INFO = 1,
|
5 | VERBOSE = 2,
|
6 | SILLY = 3
|
7 | }
|
8 | export declare const LEVEL_INFO: number;
|
9 | export declare const LEVEL_VERBOSE: number;
|
10 | export declare const LEVEL_SILLY: number;
|
11 |
|
12 | export declare let level: Level;
|
13 | export declare function configure({ level: newLevel }: {
|
14 | level: Level;
|
15 | }): void;
|
16 | export declare function warn(fmt: string, ...args: any[]): void;
|
17 | export declare function info(fmt: string, ...args: any[]): void;
|
18 | export declare function debug(fmt: string, ...args: any[]): void;
|
19 |
|
\ | No newline at end of file |