| 2 | import { spawnSync } from "node:child_process"; |
| 3 | |
| 4 | export interface ShellCommand { |
| 5 | executable: string; |
| 6 | args: string[]; |
| 7 | } |
| 8 | |
| 9 | export interface KillableProcess { |
| 10 | pid?: number; |
nothing calls this directly
no outgoing calls
no test coverage detected