Lint redux-immutable/index.d.ts
This commit is contained in:
2
types/redux-immutable/index.d.ts
vendored
2
types/redux-immutable/index.d.ts
vendored
@ -7,8 +7,8 @@
|
||||
// TypeScript Version: 2.3
|
||||
|
||||
declare module 'redux-immutable' {
|
||||
import { ReducersMapObject, Reducer, Action } from 'redux';
|
||||
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>(reducers: ReducersMapObject<S, A>, getDefaultState?: () => Collection.Indexed<S>): Reducer<S, A>;
|
||||
|
||||
Reference in New Issue
Block a user