()
| 326 | } |
| 327 | |
| 328 | public get isLoading() { |
| 329 | // check if any observer is loading |
| 330 | return Array.from(this.state.observers.values()).some( |
| 331 | (observer) => observer.getCurrentResult().isLoading, |
| 332 | ) |
| 333 | } |
| 334 | |
| 335 | public get dataUpdatedAt() { |
| 336 | // compute the max dataUpdatedAt of all observers |
no test coverage detected