@udus/notion-renderer
Version:

7 lines • 426 B
TypeScript
import type { BlockBlockProps } from "./block.js";
import type { TemplateBlockObjectResponse } from "@notionhq/client/build/src/api-endpoints.js";
import type { ComponentType } from "react";
export type TemplateBlockObject = TemplateBlockObjectResponse;
export type TemplateBlockProps = BlockBlockProps<TemplateBlockObject>;
export type TemplateBlock = ComponentType<TemplateBlockProps>;
//# sourceMappingURL=template.d.ts.map