( req: DaemonRequest, sessionName: string, invoke: DaemonInvokeFn, )
| 2 | import type { DaemonInvokeFn, DaemonRequest, DaemonResponse } from '../types.ts'; |
| 3 | |
| 4 | export async function runBatchCommands( |
| 5 | req: DaemonRequest, |
| 6 | sessionName: string, |
| 7 | invoke: DaemonInvokeFn, |
| 8 | ): Promise<DaemonResponse> { |
| 9 | return await runBatch(req, sessionName, invoke as BatchInvoke); |
| 10 | } |
no test coverage detected
searching dependent graphs…