mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 20:26:24 +00:00
Remove implicit any from Redux store creation
This commit is contained in:
@@ -54,5 +54,6 @@ const middlewareList = [
|
||||
|
||||
const enhancer = applyMiddleware(...middlewareList);
|
||||
|
||||
export const createStore = (initialState: DeepPartial<StateType>): Store =>
|
||||
reduxCreateStore(reducer, initialState, enhancer);
|
||||
export const createStore = (
|
||||
initialState: DeepPartial<StateType>
|
||||
): Store<StateType> => reduxCreateStore(reducer, initialState, enhancer);
|
||||
|
||||
Reference in New Issue
Block a user