Notes/src/Logger.ts
2025-04-03 23:27:32 +02:00

4 lines
73 B
TypeScript

export interface Logger {
debug(message: string, extra?: any): void;
}