15 lines
365 B
TypeScript
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';
|