refactor: move BaseQueryStore into separate directory, adjust exports/imports

This commit is contained in:
Ilia Mashkov
2026-05-31 17:33:06 +03:00
parent 907145c655
commit 4d8dcf52e0
5 changed files with 7 additions and 1 deletions
@@ -8,7 +8,7 @@ import {
} from '$entities/Font/lib/errors/errors';
import type { UnifiedFont } from '$entities/Font/model/types';
import { fontKeys } from '$shared/api/queryKeys';
import { BaseQueryStore } from '$shared/lib/helpers/BaseQueryStore.svelte';
import { BaseQueryStore } from '$shared/lib';
/**
* Internal fetcher that seeds the cache and handles error wrapping.
+5
View File
@@ -136,3 +136,8 @@ export {
*/
type PerspectiveManager,
} from './createPerspectiveManager/createPerspectiveManager.svelte';
/**
* Base Query store using Tanstack query
*/
export { BaseQueryStore } from './BaseQueryStore/BaseQueryStore.svelte';
+1
View File
@@ -5,6 +5,7 @@
*/
export {
BaseQueryStore,
createDebouncedState,
createEntityStore,
createFilter,