import type { LoggingLevelType } from '../LoggingLevel'; export interface IAppender { log(timestamp: string, level: LoggingLevelType, category: string, message: string): void; }