UNPKG

notion-page-to-html

Version:

It converts public notion pages to html from url

8 lines (7 loc) 270 B
import { Block } from '../../../protocols/blocks'; import { ToHtml } from '../../../../domain/use-cases/to-html'; export declare class SubHeaderBlockParser implements ToHtml { private readonly _block; constructor(block: Block); convert(): Promise<string>; }