reactotron-redux
Version:
A Reactotron plugin for Redux.
4 lines (3 loc) • 371 B
TypeScript
import type { ReactotronCore } from "reactotron-core-client";
import { PluginConfig } from "./pluginConfig";
export default function createEnhancer<Client extends ReactotronCore = ReactotronCore>(reactotron: Client, pluginConfig: PluginConfig, handleStoreCreation: () => void): (skipSettingStore?: boolean) => (createStore: any) => (reducer: any, ...args: any[]) => any;