this repo has no description
1export enum LogLevel {
2 SILLY,
3 TRACE,
4 DEBUG,
5 INFO,
6 WARN,
7 ERROR
8}
9
10type LogFunc = (...args: any[]) => void;
11
12export type Logger = {
13 silly: LogFunc;
14 trace: LogFunc;
15 debug: LogFunc;
16 info: LogFunc;
17 warn: LogFunc;
18 error: LogFunc;
19 log: (level: LogLevel, args: any[]) => void;
20};