chore: import/export fixes due to code move
This commit is contained in:
@@ -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';
|
||||
|
||||
2
src/entities/Font/model/services/index.ts
Normal file
2
src/entities/Font/model/services/index.ts
Normal file
@@ -0,0 +1,2 @@
|
||||
export { fetchFontshareFontsQuery } from './fetchFontshareFonts.svelte';
|
||||
export { fetchGoogleFontsQuery } from './fetchGoogleFonts.svelte';
|
||||
19
src/entities/Font/model/store/index.ts
Normal file
19
src/entities/Font/model/store/index.ts
Normal 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';
|
||||
Reference in New Issue
Block a user