printer-notifications/node_modules/@skeletonlabs/skeleton/dist/utilities/TableOfContents/stores.js

6 lines
255 B
JavaScript
Raw Normal View History

2023-11-13 21:10:04 +00:00
import { writable } from 'svelte/store';
/** Contains the set of table of contents link data. */
export const tocStore = writable([]);
/** Contains the ID of the top-most visible heading when scrolling. */
export const tocActiveId = writable(undefined);