mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
9 lines
216 B
TypeScript
9 lines
216 B
TypeScript
export declare const enum LogLevel {
|
|
Trace = "TRACE",
|
|
Debug = "DEBUG",
|
|
Info = "INFO",
|
|
Warn = "WARN",
|
|
Error = "ERROR"
|
|
}
|
|
export declare function log(level: LogLevel, message: string | Error): void;
|