13 lines
286 B
TypeScript
13 lines
286 B
TypeScript
// Applied fonts manager
|
|
export * from './appliedFontsStore/appliedFontsStore.svelte';
|
|
|
|
// Batch font store
|
|
export { BatchFontStore } from './batchFontStore.svelte';
|
|
|
|
// Single FontStore
|
|
export {
|
|
createFontStore,
|
|
FontStore,
|
|
fontStore,
|
|
} from './fontStore/fontStore.svelte';
|