mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-28 19:52:53 +00:00
* [react] Use HTMLDialogElement for the dialog node * Actually add the `open` property * This update requires typescript 2.6 * Update dependents of react to also require typescript 2.6
24 lines
770 B
TypeScript
24 lines
770 B
TypeScript
// Type definitions for react-intl-redux v0.1.0
|
|
// Project: https://github.com/ratson/react-intl-redux
|
|
// Definitions by: Karol Janyst <https://github.com/LKay>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.6
|
|
|
|
import { Action } from "redux"
|
|
import { Provider as ReduxProvider } from "react-redux"
|
|
import { IntlProvider as ReactIntlProvider } from "react-intl"
|
|
|
|
interface IntlState {
|
|
locale: string
|
|
messages: any
|
|
}
|
|
|
|
interface IntlAction extends Action {
|
|
payload?: IntlState
|
|
}
|
|
|
|
export function intlReducer(state: IntlState, action: IntlAction): IntlState
|
|
export function updateIntl (opts: IntlState): IntlAction
|
|
export class IntlProvider extends ReactIntlProvider {}
|
|
export class Provider extends ReduxProvider {}
|