UNPKG

reactotron-react-native

Version:

A development tool to explore, inspect, and diagnose your React Native apps.

10 lines (9 loc) 314 B
import type { ReactotronCore } from "reactotron-core-client"; export interface NetworkingOptions { ignoreContentTypes?: RegExp; ignoreUrls?: RegExp; } declare const networking: (pluginConfig?: NetworkingOptions) => (reactotron: ReactotronCore) => { onConnect: () => void; }; export default networking;