()
| 191 | |
| 192 | /** Stop every registered, live daemon. */ |
| 193 | export async function stopAllDaemons(): Promise<StopResult[]> { |
| 194 | const results: StopResult[] = []; |
| 195 | for (const rec of listDaemons()) { |
| 196 | results.push(await stopDaemonAt(rec.root)); |
| 197 | } |
| 198 | return results; |
| 199 | } |
nothing calls this directly
no test coverage detected