I'm converting my project to Typescript.
This has always worked for me in JS.
/* ##################### */
/* #### REDUX STORE #### */
/* ##################### */
const store = createStore(rootReducer, {
// INITIAL STATE GOES HERE
},window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__());
But in Typescript I'm getting these errors:
How can I fix this?