eust-conciliation
Version:
12 lines (7 loc) • 311 B
text/typescript
/* eslint-disable no-unused-vars */
export interface ILogger {
error: (message: string, ...opts: any[]) => Promise<void>;
warn: (message: string, ...opts: any[]) => Promise<void>;
info: (message: string, ...opts: any[]) => Promise<void>;
debug: (message: string, ...opts: any[]) => Promise<void>;
}