UNPKG

@flowlab/all

Version:

A cool library focusing on handling various flows

6 lines 293 B
export interface ILogger { debug(message: string, context?: Record<string, any>): void; info(message: string, context?: Record<string, any>): void; warn(message: string, context?: Record<string, any>): void; error(message: string, error?: Error, context?: Record<string, any>): void; }