9 lines
293 B
TypeScript
9 lines
293 B
TypeScript
|
|
import "react-redux";
|
||
|
|
import { AppState } from "@appsmith/reducers";
|
||
|
|
|
||
|
|
declare module "react-redux" {
|
||
|
|
// We want the DefaultRootState interface to be the AppState interface
|
||
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
||
|
|
interface DefaultRootState extends AppState {}
|
||
|
|
}
|