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