UNPKG

angular-fetcher

Version:

Signal-based state management for remote API data in Angular with support for reactive loading, error tracking, optimistic updates, and auto refetching.

9 lines 310 B
import { Observable } from 'rxjs'; /** * Configuration options for the `withResource` utility. */ export interface WithResourceOptions { /** An optional Observable to trigger cleanup when the resource is destroyed. */ destroy$?: Observable<void>; } //# sourceMappingURL=with-resource-options.d.ts.map