UNPKG

notion-page-to-html

Version:

It converts public notion pages to html from url

6 lines (5 loc) 287 B
import { Validation } from '../../../protocols/validation'; import { HttpResponse } from 'data/protocols/http-request'; export declare class PageRecordValidator implements Validation<[string, HttpResponse]> { validate(notionPageId: string, pageRecord: HttpResponse): Error | null; }