UNPKG

@villedemontreal/workit-types

Version:
9 lines (8 loc) 231 B
export type LogFunction = (message: string, ...args: unknown[]) => void; /** Defines a logger interface. */ export interface ILogger { error: LogFunction; warn: LogFunction; info: LogFunction; debug: LogFunction; }