/* 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>;
}
