Files
frontend-svelte/src/shared/lib/fetch/index.ts
2026-01-06 21:35:16 +03:00

15 lines
365 B
TypeScript

/**
* Shared fetch layer exports
*
* Exports collection caching utilities and reactive patterns for Svelte 5
*/
export { createCollectionCache } from './collectionCache';
export type {
CacheItemInternalState,
CacheOptions,
CacheStats,
CollectionCacheManager,
} from './collectionCache';
export { reactiveQueryArgs } from './reactiveQueryArgs';