serlina
Version:
A progressive React serverside-rendering framework
15 lines (14 loc) • 471 B
TypeScript
import * as React from 'react';
export interface DocumentProps {
pageStyles: string[];
pageScripts: string[];
initialProps: any;
publicPath: string;
children?: React.ReactNode;
helmet: any;
inlineCSSString: null | string[];
body: string;
pageName: string;
}
declare const _default: ({ pageStyles, pageScripts, initialProps, publicPath, body, pageName, inlineCSSString, helmet }: DocumentProps) => JSX.Element;
export default _default;