UNPKG

notion-page-to-html

Version:

It converts public notion pages to html from url

8 lines (7 loc) 318 B
import { DecorableText } from '../../../../../data/protocols/blocks/decorable-text'; export declare class Decorator { private readonly _decorableTexts; constructor(decorableTexts: DecorableText[]); decorate(): Promise<string>; _decorateByDecorableText(decorableText: DecorableText): Promise<string>; }