| 22 | } |
| 23 | |
| 24 | export interface LogEntry { |
| 25 | id: number |
| 26 | timestamp: string |
| 27 | level: 'info' | 'warning' | 'error' | 'success' | 'debug' |
| 28 | message: string |
| 29 | } |
| 30 | |
| 31 | export interface DataFile { |
| 32 | name: string |
nothing calls this directly
no outgoing calls
no test coverage detected