notion-page-to-html
Version:
It converts public notion pages to html from url
10 lines (9 loc) • 377 B
TypeScript
import { Decoration } from '../../../../../../data/protocols/blocks';
import { ToHtml } from '../../../../../../domain/use-cases/to-html';
export declare class LinkDecorationToHtml implements ToHtml {
private readonly _text;
private readonly _decoration;
constructor(text: string, decoration: Decoration);
convert(): Promise<string>;
private get _link();
}