Notes/src/Logger.ts
2019-03-11 13:41:55 +05:30

4 lines
76 B
TypeScript

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