UNPKG

notion-page-to-html

Version:

It converts public notion pages to html from url

8 lines (7 loc) 257 B
import { Block } from '../../protocols/blocks'; import { PageProps } from '../../protocols/page-props'; export declare class PageBlockToPageProps { private readonly _pageBlock; constructor(pageBlock: Block); toPageProps(): Promise<PageProps>; }