chore: import/export fixes due to code move

This commit is contained in:
Ilia Mashkov
2026-01-13 20:00:36 +03:00
parent 99d4b4e29a
commit 91451f7886
10 changed files with 58 additions and 28 deletions

View File

@@ -1,5 +1,3 @@
export { fontCollection } from './store/fontCollection.svelte';
export type {
// Domain types
FontCategory,
@@ -36,3 +34,11 @@ export type {
UnifiedFont,
UnifiedFontVariant,
} from './types';
export { fetchFontshareFontsQuery } from './services';
export {
createFontshareStore,
type FontshareStore,
fontshareStore,
} from './store';

View File

@@ -0,0 +1,2 @@
export { fetchFontshareFontsQuery } from './fetchFontshareFonts.svelte';
export { fetchGoogleFontsQuery } from './fetchGoogleFonts.svelte';

View File

@@ -0,0 +1,19 @@
/**
* ============================================================================
* UNIFIED FONT STORE EXPORTS
* ============================================================================
*
* Single export point for the unified font store infrastructure.
*/
// export {
// createUnifiedFontStore,
// UNIFIED_FONT_STORE_KEY,
// type UnifiedFontStore,
// } from './unifiedFontStore.svelte';
export {
createFontshareStore,
type FontshareStore,
fontshareStore,
} from './fontshareStore.svelte';