9 lines
139 B
TypeScript
9 lines
139 B
TypeScript
export const logLevel = {
|
|
debug: 0,
|
|
info: 1,
|
|
warning: 2,
|
|
error: 3,
|
|
};
|
|
|
|
export type Level = "debug" | "error" | "warning" | "info";
|