UNPKG

@udus/notion-renderer

Version:
16 lines 523 B
import type { DatabaseObject } from "../../types/notion/database.js"; import type { PageObject } from "../../types/notion/page.js"; import type { FC } from "react"; type Props = { database: DatabaseObject; pages: Array<PageObject>; displayProperties?: Array<string>; hideCover?: boolean; hideIcon?: boolean; hideTitle?: boolean; hideDescription?: boolean; viewType?: "table" | "gallery" | "list"; }; export declare const Database: FC<Props>; export {}; //# sourceMappingURL=Database.d.ts.map