update
This commit is contained in:
parent
5215ba24cc
commit
6c3759c70d
12 changed files with 47 additions and 15 deletions
9
src/ILogItem.ts
Normal file
9
src/ILogItem.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import { LogLevel } from "./LogLevel";
|
||||
|
||||
export interface ILogItem {
|
||||
timestamp: Date;
|
||||
origin?: string;
|
||||
flags?: string[];
|
||||
level: LogLevel;
|
||||
data: any;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue