notion-page-to-html
Version:
It converts public notion pages to html from url
10 lines (9 loc) • 321 B
TypeScript
import { Block } from '../../../protocols/blocks';
import { ToHtml } from '../../../../domain/use-cases/to-html';
export declare class ImageBlockToHtml implements ToHtml {
private readonly _block;
constructor(block: Block);
convert(): Promise<string>;
private get _rawSrc();
private get _caption();
}