UNPKG

notion-page-to-html

Version:

It converts public notion pages to html from url

8 lines (7 loc) 349 B
import { Block } from '../../../data/protocols/blocks'; import { NotionApiContentResponse } from '../../protocols/notion-api-content-response'; export declare class NotionApiContentResponsesToBlocks { private readonly _notionApiContentResponses; constructor(notionApiContentResponses: NotionApiContentResponse[]); toBlocks(): Block[]; }