UNPKG

448 BTypeScriptView Raw
1import { Reactotron } from "reactotron-core-client";
2import { SagaMonitor } from "redux-saga";
3import { PluginConfig } from "./sagaMonitor";
4declare const _default: (pluginConfig: PluginConfig) => (reactotron: Reactotron) => {
5 features: {
6 createSagaMonitor: () => SagaMonitor;
7 };
8};
9export default _default;
10declare module "reactotron-core-client" {
11 interface Reactotron {
12 createSagaMonitor?: () => SagaMonitor;
13 }
14}