UNPKG

notion-page-to-html

Version:

It converts public notion pages to html from url

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