(res: R)
| 63 | * @experimental |
| 64 | */ |
| 65 | export function nonBlocking<T, R extends Resource<T>>(res: R): R { |
| 66 | (res as unknown as InternalRouterResource<T>)[BLOCKING_SYMBOL] = false; |
| 67 | return res; |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Wraps a Resource to make it cooperative with the Angular Router, freezing its state |
no outgoing calls
no test coverage detected