Repository URL to install this package:
|
Version:
0.0.13 ▾
|
import { ReactNode } from 'react';
import { HelmetData, HelmetProps } from 'react-helmet';
export interface ServerHtmlOtherProps {
helmet?: HelmetProps & HelmetData;
styledTags: Array<ReactNode>;
}
export interface ServerHTMLProps extends ServerHtmlOtherProps {
nonce: string;
reactAppString: string;
routerState?: Object;
apolloState?: Object;
isCompat?: boolean;
storeState?: Object;
asyncState?: Object;
}
export interface GlobalScriptTags<Type = string> {
__APP_STATE__: Type;
__APOLLO_STATE__: Type;
__ROUTER_STATE__: Type;
}
export interface InlineScriptProps {
nonce: string;
children: string;
}
export interface KeyedComponentProps {
children: any;
key?: any;
}