next-page-tester
Version:
Enable DOM integration testing on Next.js pages
9 lines (8 loc) • 382 B
TypeScript
import { DocumentInitialProps } from 'next/document';
import type { PageObject } from '../commonTypes';
import type { DocumentType, RenderPage } from 'next/dist/shared/lib/utils';
export default function fetchDocumentData({ Document, pageObject, renderPage, }: {
Document: DocumentType;
pageObject: PageObject;
renderPage: RenderPage;
}): Promise<DocumentInitialProps>;