notion-to-md
Version:
convert notion pages, block and list of blocks to markdown (supports nesting)
5 lines • 391 B
TypeScript
import { Client } from "@notionhq/client";
import { ListBlockChildrenResponseResults } from "../types";
export declare const getBlockChildren: (notionClient: Client, block_id: string, totalPage: number | null) => Promise<ListBlockChildrenResponseResults>;
export declare const modifyNumberedListObject: (blocks: ListBlockChildrenResponseResults) => void;
//# sourceMappingURL=notion.d.ts.map