UNPKG

@equinor/fusion-query

Version:

Reactive data fetching and caching library with observable streams and comprehensive event system

13 lines (12 loc) 507 B
/** * `@equinor/fusion-query` — Reactive data fetching, caching, and state management library. * * This package provides the {@link Query} class for managing asynchronous data fetching * with built-in caching, queue strategies, retry logic, and a comprehensive event system. * * @packageDocumentation */ export * from './types'; export * as operators from './operators'; export { default, Query, QueryCtorOptions } from './Query'; export { IQueryEvent, QueryEventMap, QueryEvent } from './events';