@udus/notion-renderer
Version:

7 lines • 482 B
TypeScript
import type { BlockBlockProps } from "./block.js";
import type { TableOfContentsBlockObjectResponse } from "@notionhq/client/build/src/api-endpoints.js";
import type { ComponentType } from "react";
export type TableOfContentsBlockObject = TableOfContentsBlockObjectResponse;
export type TableOfContentsBlockProps = BlockBlockProps<TableOfContentsBlockObject>;
export type TableOfContentsBlock = ComponentType<TableOfContentsBlockProps>;
//# sourceMappingURL=tableOfContents.d.ts.map