mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-04-04 20:54:36 +00:00
Add more missing props
This commit is contained in:
7
types/react-helmet/index.d.ts
vendored
7
types/react-helmet/index.d.ts
vendored
@@ -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> {
|
||||
|
||||
Reference in New Issue
Block a user