import { LogLevel } from "../../constants/log"; export type ILogType = 'INFO' | 'ERROR' | 'WARN'; export interface ILog { stored: IDoc[]; logLevel: LogLevel; updateLogLevel: (logLevel: LogLevel) => void; stringify: (args: (object | string)[]) => string; utcNow: () => string; store: (msg: string, type: ILogType) => void; info: (...args: (object | string)[]) => void; warn: (...args: (object | string)[]) => void; error: (...args: (object | string)[]) => void; history: () => IDoc[]; } export interface IDoc { type: ILogType; message: string; } //# sourceMappingURL=log.interfaces.d.ts.map