UNPKG

ajsfw

Version:
16 lines (15 loc) 328 B
import { LogType } from "./LogType"; export interface ILogRecord { sameTypeId: string; time: Date; occurence: number; type: LogType; level: number; module: string; object: any; function: string; caller: string; message: string; data: number; breakpoint: boolean; }