Update index.d.ts (#25313)

Added `async` and `defer` as optional properties of the `<Helmet>` component.
This commit is contained in:
Derek Clair
2018-04-26 15:17:01 -07:00
committed by Wesley Wigham
parent 262cb8eae6
commit eae2ca1b41
+2
View File
@@ -7,9 +7,11 @@
import * as React from "react";
export interface HelmetProps {
async?: boolean;
base?: any;
bodyAttributes?: Object;
defaultTitle?: string;
defer?: boolean;
encodeSpecialCharacters?: boolean;
htmlAttributes?: any;
onChangeClientState?: (newState: any) => void;