import reducer from "../reducer"; import { ActionType } from "typesafe-actions"; export interface EntityState { [key: string]: E; } export type State = ReturnType; export type Action = ActionType;