20 lines
526 B
TypeScript
20 lines
526 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';
|