1
1
mirror of https://github.com/neosubhamoy/neodlp.git synced 2026-03-22 21:45:50 +05:30
Files
neodlp/src/types/logs.ts

7 lines
154 B
TypeScript

export interface Log {
timestamp: number;
level: 'info' | 'warning' | 'error' | 'debug' | 'progress';
context: string;
message: string;
}