7 lines
368 B
TypeScript
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>;
|