/** * @module logger */ import { LogInfo } from './log-info.type'; export declare type LogReceiver = (logInfo: LogInfo) => any | void;