This commit is contained in:
Robert Jelic
2025-02-10 07:12:35 +01:00
parent 78cfbc7510
commit 5c15cf28fa
2427 changed files with 1005260 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
export declare function createNullLogger(): Logger;
export declare type Logger = {
/**
* Logs debug messages.
*/
readonly debug: (message: string, args?: any) => Readonly<Promise<void>>;
/**
* Logs info messages.
*/
readonly info: (message: string, args?: any) => Readonly<Promise<void>>;
/**
* Logs error messages.
*/
readonly error: (message: string, args?: any) => Readonly<Promise<void>>;
};
export declare const LogLevelEnum: Readonly<Record<string, LogLevelType>>;
export declare type LogLevelType = 1 | 2 | 3;
export { }