This commit is contained in:
Strix 2025-03-12 19:25:11 +01:00
parent 5215ba24cc
commit 6c3759c70d
12 changed files with 47 additions and 15 deletions

9
src/ILogItem.ts Normal file
View file

@ -0,0 +1,9 @@
import { LogLevel } from "./LogLevel";
export interface ILogItem {
timestamp: Date;
origin?: string;
flags?: string[];
level: LogLevel;
data: any;
}