(
body: Commands["start_task"]["input"],
options?: InvokeOptions
)
| 11 | import type { Commands } from "./_apiTypes.d.ts"; |
| 12 | |
| 13 | export async function startTask( |
| 14 | body: Commands["start_task"]["input"], |
| 15 | options?: InvokeOptions |
| 16 | ): Promise<Commands["start_task"]["output"]> { |
| 17 | return await pyInvoke("start_task", body, options); |
| 18 | } |
| 19 | |
| 20 | export async function stopTask( |
| 21 | body: Commands["stop_task"]["input"], |
nothing calls this directly
no outgoing calls
no test coverage detected