Add more missing props

This commit is contained in:
Kok J Sam
2017-04-10 12:49:57 -04:00
parent c3c69b79d9
commit a24d8ca2cd

View File

@@ -8,16 +8,19 @@ import * as React from "react";
interface HelmetProps {
base?: any;
bodyAttributes: Object;
defaultTitle?: string;
encodeSpecialCharacters?: boolean;
htmlAttributes?: any;
onChangeClientState?: (newState: any) => void;
link?: Array<any>;
meta?: Array<any>;
noscript?: Array<any>;
script?: Array<any>;
style?: Array<any>;
title?: string;
titleAttributes: Object;
titleTemplate?: string;
onChangeClientState?: (newState: any) => void;
encodeSpecialCharacters?: boolean;
}
export class Helmet extends React.Component<HelmetProps, any> {