(response: any)
| 52 | } |
| 53 | |
| 54 | function isStreamingExecution(response: any): response is StreamingExecution { |
| 55 | return response && typeof response === 'object' && 'stream' in response && 'execution' in response |
| 56 | } |
| 57 | |
| 58 | function isReadableStream(response: any): response is ReadableStream { |
| 59 | return response instanceof ReadableStream |
no outgoing calls
no test coverage detected