@tdb/web
Version:
Common condiguration for serving a web-site and testing web-based UI components.
12 lines (11 loc) • 354 B
TypeScript
/// <reference types="react" />
import { React } from '../../common';
export interface IDocumentProps {
__NEXT_DATA__?: any;
dev?: boolean;
chunks?: string[];
head?: Array<React.ReactElement<any>>;
styles?: Array<React.ReactElement<any>>;
[key: string]: any;
}
export declare const Document: React.ComponentClass<IDocumentProps>;