reactotron-plugin-zustand
Version:
Plugin to monitor states from zustand
12 lines (9 loc) • 443 B
TypeScript
import { PluginConfig, ReactotronCore, ReactotronCoreNative } from './types.js';
import 'zustand';
import 'reactotron-react-js';
import 'reactotron-react-native';
declare const WILDCARDS: string[];
declare function reactotronPluginZustand({ stores, omitFunctionKeys }: PluginConfig): (reactotron: ReactotronCore | ReactotronCoreNative) => {
onCommand: (command: any) => void;
};
export { WILDCARDS, reactotronPluginZustand as default };