@types/react-i18next
Advanced tools
Comparing version 7.8.1 to 7.8.2
@@ -6,2 +6,3 @@ // Type definitions for react-i18next 7.8 | ||
// Benedict Etzel <https://github.com/beheh> | ||
// Wu Haotian <https://github.com/whtsky> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
@@ -8,0 +9,0 @@ // TypeScript Version: 2.8 |
{ | ||
"name": "@types/react-i18next", | ||
"version": "7.8.1", | ||
"version": "7.8.2", | ||
"description": "TypeScript definitions for react-i18next", | ||
@@ -21,2 +21,7 @@ "license": "MIT", | ||
"githubUsername": "beheh" | ||
}, | ||
{ | ||
"name": "Wu Haotian", | ||
"url": "https://github.com/whtsky", | ||
"githubUsername": "whtsky" | ||
} | ||
@@ -34,4 +39,4 @@ ], | ||
}, | ||
"typesPublisherContentHash": "53084445dc50fb74594e242d4cb6ecc22ecb4381248d0aad5d730422b43685bd", | ||
"typesPublisherContentHash": "b91d1dc9236f713ecba321b37b17ae92ddebf8d30f6319367381e88022930c0d", | ||
"typeScriptVersion": "2.8" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Sat, 04 Aug 2018 00:56:32 GMT | ||
* Last updated: Mon, 06 Aug 2018 21:55:26 GMT | ||
* Dependencies: i18next, react | ||
@@ -17,2 +17,2 @@ * Global values: reactI18Next | ||
# Credits | ||
These definitions were written by Giedrius Grabauskas <https://github.com/GiedriusGrabauskas>, Simon Baumann <https://github.com/chnoch>, Benedict Etzel <https://github.com/beheh>. | ||
These definitions were written by Giedrius Grabauskas <https://github.com/GiedriusGrabauskas>, Simon Baumann <https://github.com/chnoch>, Benedict Etzel <https://github.com/beheh>, Wu Haotian <https://github.com/whtsky>. |
@@ -18,5 +18,5 @@ import * as React from "react"; | ||
initialLanguage?: string; | ||
children: (t: TranslationFunction, options: Options) => JSX.Element; | ||
children: (t: TranslationFunction, options: Options) => React.ReactNode; | ||
} | ||
export default class I18n extends React.Component<i18nProps> { } |
@@ -9,5 +9,5 @@ import * as React from "react"; | ||
initialLanguage?: string; | ||
children: JSX.Element; | ||
children: React.ReactNode; | ||
} | ||
export default class I18nextProvider extends React.Component<I18nextProviderProps> { } |
11155
206