@types/react-intl-redux
TypeScript icon, indicating that this package has built-in type declarations

0.1.19 • Public • Published

Installation

npm install --save @types/react-intl-redux

Summary

This package contains type definitions for react-intl-redux (https://github.com/ratson/react-intl-redux).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-intl-redux.

index.d.ts

import { IntlProvider as ReactIntlProvider } from "react-intl";
import { Provider as ReduxProvider } from "react-redux";
import { Action, AnyAction } from "redux";

interface IntlState {
    locale: string;
    messages: any;
    formats?: any;
}

interface IntlAction extends Action {
    payload?: IntlState | undefined;
}

export function intlReducer(state: IntlState | undefined, action: IntlAction): IntlState;
export function updateIntl(opts: IntlState): IntlAction;
export class IntlProvider extends ReactIntlProvider {}
export class Provider<A extends Action = AnyAction> extends ReduxProvider<A> {}

Additional Details

Credits

These definitions were written by Karol Janyst.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/react-intl-redux

Weekly Downloads

2,082

Version

0.1.19

License

MIT

Unpacked Size

4.05 kB

Total Files

5

Last publish

Collaborators

  • types