| 19 | // ─── Types ────────────────────────────────────────────────────── |
| 20 | |
| 21 | export interface ActivityEntry { |
| 22 | id: number; |
| 23 | timestamp: number; |
| 24 | type: 'command_start' | 'command_end' | 'navigation' | 'error'; |
| 25 | command?: string; |
| 26 | args?: string[]; |
| 27 | url?: string; |
| 28 | duration?: number; |
| 29 | status?: 'ok' | 'error'; |
| 30 | error?: string; |
| 31 | result?: string; |
| 32 | tabs?: number; |
| 33 | mode?: string; |
| 34 | clientId?: string; |
| 35 | } |
| 36 | |
| 37 | // ─── Buffer & Subscribers ─────────────────────────────────────── |
| 38 |
nothing calls this directly
no outgoing calls
no test coverage detected