UNPKG

notion-page-to-html

Version:

It converts public notion pages to html from url

11 lines (10 loc) 269 B
import { DecorableText } from './decorable-text'; import { Format } from './format'; export declare type Block = { id: string; type: string; children: Block[]; properties: Record<string, any>; format: Format; decorableTexts: DecorableText[]; };