UNPKG

jspurefix

Version:
16 lines (15 loc) 481 B
export interface IJsFixLogger { info: (message: string) => void; warning: (message: string) => void; debug: (message: string) => void; error: (e: Error) => void; } export declare class EmptyLogger implements IJsFixLogger { readonly type: string; constructor(type?: string); info(_: string): void; warning(_: string): void; debug(_: string): void; error(_: Error): void; } export declare function makeEmptyLogger(type: string): IJsFixLogger;