(runId: string)
| 64 | } |
| 65 | |
| 66 | function cancelRun(runId: string): ApiPromise<CanceledRunResponse> { |
| 67 | const apiClient = apiClientManager.client; |
| 68 | |
| 69 | if (!apiClient) { |
| 70 | throw apiClientMissingError(); |
| 71 | } |
| 72 | |
| 73 | return apiClient.cancelRun(runId); |
| 74 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…