Lint redux-immutable/index.d.ts
This commit is contained in:
parent
12c57e02a5
commit
454f1e3e8d
|
@ -7,8 +7,8 @@
|
||||||
// TypeScript Version: 2.3
|
// TypeScript Version: 2.3
|
||||||
|
|
||||||
declare module 'redux-immutable' {
|
declare module 'redux-immutable' {
|
||||||
import { ReducersMapObject, Reducer, Action } from 'redux';
|
|
||||||
import { Collection, Record as ImmutableRecord } from 'immutable';
|
import { Collection, Record as ImmutableRecord } from 'immutable';
|
||||||
|
import { ReducersMapObject, Reducer, Action } from 'redux';
|
||||||
|
|
||||||
export function combineReducers<S, A extends Action, T>(reducers: ReducersMapObject<S, A>, getDefaultState?: () => Collection.Keyed<T, S>): Reducer<S, A>;
|
export function combineReducers<S, A extends Action, T>(reducers: ReducersMapObject<S, A>, getDefaultState?: () => Collection.Keyed<T, S>): Reducer<S, A>;
|
||||||
export function combineReducers<S, A extends Action>(reducers: ReducersMapObject<S, A>, getDefaultState?: () => Collection.Indexed<S>): Reducer<S, A>;
|
export function combineReducers<S, A extends Action>(reducers: ReducersMapObject<S, A>, getDefaultState?: () => Collection.Indexed<S>): Reducer<S, A>;
|
||||||
|
|
Loading…
Reference in New Issue