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.

35 lines
1.4 KiB
TypeScript

import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
/** Provide classes to set the inactive anchor styles.*/
inactive?: string | undefined;
/** Provide classes to set the active anchor styles.*/
active?: string | undefined;
/** Set the active permalink ID on load.*/
activeId?: string | undefined;
/** Set indentation per each queried element.*/
indentStyles?: Record<string, string> | undefined;
/** Provide arbitrary classes to the lead regions, used for titles.*/
regionLead?: string | undefined;
/** Provide arbitrary classes to style the list element.*/
regionList?: string | undefined;
/** Provide arbitrary classes to style the list item elements.*/
regionListItem?: string | undefined;
/** Provide arbitrary classes to style the anchor elements.*/
regionAnchor?: string | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type TableOfContentsProps = typeof __propDef.props;
export type TableOfContentsEvents = typeof __propDef.events;
export type TableOfContentsSlots = typeof __propDef.slots;
export default class TableOfContents extends SvelteComponentTyped<TableOfContentsProps, TableOfContentsEvents, TableOfContentsSlots> {
}
export {};