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