Initial Commit
This commit is contained in:
7
test/logger/appenders/IAppender.ts
Normal file
7
test/logger/appenders/IAppender.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import {LoggingLevel} from '../LoggingLevel';
|
||||
|
||||
interface IAppender {
|
||||
append(timestamp: string, level: LoggingLevel, category: string, message: string): void;
|
||||
}
|
||||
|
||||
export default IAppender;
|
||||
Reference in New Issue
Block a user