You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
368 B
TypeScript

/// <reference types="svelte" />
import type { TOCHeadingLink } from './types.js';
/** Contains the set of table of contents link data. */
export declare const tocStore: import("svelte/store").Writable<TOCHeadingLink[]>;
/** Contains the ID of the top-most visible heading when scrolling. */
export declare const tocActiveId: import("svelte/store").Writable<string>;