(res: R)
| 47 | * @experimental |
| 48 | */ |
| 49 | export function nonBlocking<T, R extends Resource<T>>(res: R): R { |
| 50 | (res as unknown as InternalRouterResource<T>)[BLOCKING_SYMBOL] = false; |
| 51 | return res; |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * Wraps a Resource to make it cooperative with the Angular Router, freezing its state |
no outgoing calls
no test coverage detected