UNPKG

notion-page-to-html

Version:

It converts public notion pages to html from url

10 lines (9 loc) 345 B
import { IdNormalizer, UrlValidator } from './services'; export declare class NotionUrlToPageId { private readonly url; private readonly idNormalizer; private readonly urlValidator; constructor(url: string, idNormalizer: IdNormalizer, urlValidator: UrlValidator); toPageId(): string; private get ununormalizedPageId(); }