File size: 195 Bytes
4327358
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
export interface ILogger {
  fatal(log: string): void;
  error(log: string): void;
  warn(log: string): void;
  info(log: string): void;
  debug(log: string): void;
  trace(log: string): void;
}