igir
Version:
🕹 A zero-setup ROM collection manager that sorts, filters, extracts or archives, patches, and reports on collections of any size on any OS.
15 lines (14 loc) • 401 B
TypeScript
export declare const LogLevel: {
readonly TRACE: 1;
readonly DEBUG: 2;
readonly INFO: 3;
readonly WARN: 4;
readonly ERROR: 5;
readonly NOTICE: 6;
readonly ALWAYS: 7;
readonly NEVER: 8;
};
type LogLevelKey = keyof typeof LogLevel;
export type LogLevelValue = (typeof LogLevel)[LogLevelKey];
export declare const LogLevelInverted: Record<number, LogLevelKey>;
export {};