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

@@ -21,7 +21,7 @@ export {
normalizeFontshareFonts,
normalizeGoogleFont,
normalizeGoogleFonts,
} from './api/normalize/normalize';
} from './lib/normalize/normalize';
export type {
// Domain types
FontCategory,
@@ -43,6 +43,7 @@ export type {
FontshareFont,
FontshareLink,
FontsharePublisher,
FontshareStore,
FontshareStyle,
FontshareStyleProperties,
FontshareTag,
@@ -59,4 +60,17 @@ export type {
UnifiedFontVariant,
} from './model';
export { fontCollection } from './model';
export {
createFontshareStore,
fetchFontshareFontsQuery,
fontshareStore,
} from './model';
// Stores
export {
createGoogleFontsStore,
GoogleFontsStore,
} from './model/services/fetchGoogleFonts.svelte';
// UI elements
export { FontList } from './ui';