svelte-multiselect
Version:
Svelte multi-select component
15 lines (14 loc) • 426 B
TypeScript
/** @type {() => import('svelte/compiler').PreprocessorGroup} */
export declare function heading_ids(): {
name: string;
markup({ content }: {
content: string;
}): {
code: string;
};
};
export interface HeadingAnchorsOptions {
selector?: string;
icon_svg?: string;
}
export declare const heading_anchors: (options?: HeadingAnchorsOptions) => (node: Element) => (() => void) | undefined;