(
body: Commands["stop_task"]["input"],
options?: InvokeOptions
)
| 18 | } |
| 19 | |
| 20 | export async function stopTask( |
| 21 | body: Commands["stop_task"]["input"], |
| 22 | options?: InvokeOptions |
| 23 | ): Promise<Commands["stop_task"]["output"]> { |
| 24 | return await pyInvoke("stop_task", body, options); |
| 25 | } |
| 26 | |
| 27 | export async function debug( |
| 28 | body: Commands["debug"]["input"], |
nothing calls this directly
no outgoing calls
no test coverage detected