( options: ResourceOptions<T, R>, )
| 563 | } |
| 564 | |
| 565 | function isStreamingResourceOptions<T, R>( |
| 566 | options: ResourceOptions<T, R>, |
| 567 | ): options is StreamingResourceOptions<T, R> { |
| 568 | return !!(options as StreamingResourceOptions<T, R>).stream; |
| 569 | } |
| 570 | |
| 571 | /** |
| 572 | * Project from a state with `ResourceInternalStatus` to the user-facing `ResourceStatus` |
no outgoing calls
no test coverage detected
searching dependent graphs…