4 lines
73 B
TypeScript
Raw Normal View History

2025-04-03 23:27:32 +02:00
export interface Logger {
debug(message: string, extra?: any): void;
}