(runId: string)
| 44 | } |
| 45 | |
| 46 | function retrieveRun(runId: string): ApiPromise<RetrieveRunResult> { |
| 47 | const apiClient = apiClientManager.client; |
| 48 | |
| 49 | if (!apiClient) { |
| 50 | throw apiClientMissingError(); |
| 51 | } |
| 52 | |
| 53 | return apiClient.retrieveRun(runId); |
| 54 | } |
| 55 | |
| 56 | function replayRun(runId: string): ApiPromise<ReplayRunResponse> { |
| 57 | const apiClient = apiClientManager.client; |
nothing calls this directly
no test coverage detected
searching dependent graphs…