Initial Commit

This commit is contained in:
2025-08-16 15:12:58 -04:00
commit ea8fd991a0
25 changed files with 656 additions and 0 deletions

8
src/index.ts Normal file
View File

@@ -0,0 +1,8 @@
import type ILogger from './ILogger';
import type IAppender from './appenders/IAppender';
import LoggerFactory from './LoggerFactory';
import LoggingLevelMapping from './level/LoggingLevelMapping';
export type {ILogger, IAppender};
export {LoggerFactory, LoggingLevelMapping};
export default {LoggerFactory, LoggingLevelMapping};