import { Reducer } from "redux"; export interface Action { type: string; payload?: Payload; error?: boolean; } export type Reducers = Record;