export interface ILogRecord { args: any[]; ctx: Record; lv: LogLv; type: string; time: number; } export declare enum LogLv { Debug = 0, Log = 1, Info = 2, Warn = 3, Error = 4 } //# sourceMappingURL=types.d.ts.map