@bolttech/server-side-next
Version:
This library was generated with [Nx](https://nx.dev).
9 lines (8 loc) • 340 B
TypeScript
/// <reference types="react" />
import NextDocument, { DocumentContext, DocumentInitialProps } from 'next/document';
export default class Document extends NextDocument {
static locale: string;
static font: string;
static getInitialProps(ctx: DocumentContext): Promise<DocumentInitialProps>;
render(): JSX.Element;
}