export interface LoggerInterface { write(type: 'ERROR' | 'INPUT' | 'OUTPUT', where: string, message: any): void; }