diff --git a/redux/redux.d.ts b/redux/redux.d.ts index 6d854f50cc..44cb297c12 100644 --- a/redux/redux.d.ts +++ b/redux/redux.d.ts @@ -40,7 +40,7 @@ declare module Redux { subscribe(listener: Function): Function; } - function createStore(reducer: Reducer, initialState?: any, enhancer?: (any)=>any): Store; + function createStore(reducer: Reducer, initialState?: any, enhancer?: ()=>any): Store; function bindActionCreators(actionCreators: T, dispatch: Dispatch): T; function combineReducers(reducers: any): Reducer; function applyMiddleware(...middlewares: Middleware[]): Function;