8 lines
189 B
TypeScript
8 lines
189 B
TypeScript
import {LoggingLevel} from '../LoggingLevel';
|
|
|
|
interface IAppender {
|
|
append(timestamp: string, level: LoggingLevel, category: string, message: string): void;
|
|
}
|
|
|
|
export default IAppender;
|