2022-05-20 18:36:46 +05:30

12 lines
168 B
TypeScript

import { compose, Store } from 'redux';
declare global {
interface Window {
store: Store;
__REDUX_DEVTOOLS_EXTENSION_COMPOSE__: typeof compose;
}
}
export {};