18 lines
544 B
TypeScript
18 lines
544 B
TypeScript
/**
|
|
* ============================================================================
|
|
* UNIFIED FONT STORE EXPORTS
|
|
* ============================================================================
|
|
*
|
|
* Single export point for the unified font store infrastructure.
|
|
*/
|
|
|
|
// Applied fonts manager (CSS loading - unchanged)
|
|
export { appliedFontsManager } from './appliedFontsStore/appliedFontsStore.svelte';
|
|
|
|
// Single FontStore (new implementation)
|
|
export {
|
|
createFontStore,
|
|
FontStore,
|
|
fontStore,
|
|
} from './fontStore/fontStore.svelte';
|