This commit is contained in:
Strix 2025-02-03 11:33:47 +01:00
commit 4b00caf7d4
9 changed files with 187 additions and 0 deletions

8
ILogItem.ts Normal file
View file

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