import { LogLevel } from "./LogLevel"; export interface ILogItem { timestamp: Date; origin?: string; flags?: string[]; level: LogLevel; data: any; }