(
cmd: string,
args: string[],
options: ExecDetachedOptions = {},
)
| 318 | } |
| 319 | |
| 320 | export function runCmdDetached( |
| 321 | cmd: string, |
| 322 | args: string[], |
| 323 | options: ExecDetachedOptions = {}, |
| 324 | ): number { |
| 325 | return runCmdDetachedMonitored(cmd, args, options).pid; |
| 326 | } |
| 327 | |
| 328 | export function runCmdDetachedMonitored( |
| 329 | cmd: string, |
no test coverage detected