chore: move fetch directory into shared/lib

This commit is contained in:
Ilia Mashkov
2026-01-06 21:35:16 +03:00
parent 931a2df1ee
commit c78ab826a2
4 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
/**
* 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';