24 lines
697 B
TypeScript
24 lines
697 B
TypeScript
/**
|
|
* ============================================================================
|
|
* 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';
|
|
|
|
export { appliedFontsManager } from './appliedFontsStore/appliedFontsStore.svelte';
|
|
|
|
export { selectedFontsStore } from './selectedFontsStore/selectedFontsStore.svelte';
|