| 3 | import { execFileSync, spawn, ChildProcess } from "node:child_process"; |
| 4 | |
| 5 | export interface MobilecliCrashEntry { |
| 6 | processName: string; |
| 7 | timestamp: string; |
| 8 | id: string; |
| 9 | } |
| 10 | |
| 11 | export interface MobilecliCrashesListResponse { |
| 12 | status: "ok"; |
nothing calls this directly
no outgoing calls
no test coverage detected