| 13 | // ── Types ────────────────────────────────────────────────────────────────── |
| 14 | |
| 15 | interface ProcessInfo { |
| 16 | pid: number; |
| 17 | name: string; |
| 18 | arch: string; |
| 19 | window_title: string | null; |
| 20 | memory_kb: number; |
| 21 | exe_path: string | null; |
| 22 | admin: boolean; |
| 23 | } |
| 24 | |
| 25 | interface SpeedState { |
| 26 | injected: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected