PromucFlow_constructor/app/client/src/config.d.ts

9 lines
291 B
TypeScript
Raw Normal View History

import "react-redux";
import type { AppState } from "ee/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 {}
}