mirror of
https://github.com/neosubhamoy/neodlp.git
synced 2026-03-22 21:45:50 +05:30
7 lines
154 B
TypeScript
7 lines
154 B
TypeScript
export interface Log {
|
|
timestamp: number;
|
|
level: 'info' | 'warning' | 'error' | 'debug' | 'progress';
|
|
context: string;
|
|
message: string;
|
|
}
|