UNPKG

notion-page-to-html

Version:

It converts public notion pages to html from url

7 lines (6 loc) 125 B
export interface ToHtml { convert(): Promise<string>; } export interface ToHtmlClass { new (...args: any): ToHtml; }