sveltekit-notion-blog
Version:
A plug and play library for setting up blogs in subdirectory or main directory in Sveltekit projects using Notion as CMS.
8 lines (7 loc) • 303 B
TypeScript
import type { TableOfContentItems } from '../types';
interface Props {
tableOfContent: (TableOfContentItems | undefined)[] | undefined;
}
declare const TableOfContent: import("svelte").Component<Props, {}, "">;
type TableOfContent = ReturnType<typeof TableOfContent>;
export default TableOfContent;