UNPKG

notion-page-to-html

Version:

It converts public notion pages to html from url

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