reactotron-react-native
Version:
A development tool to explore, inspect, and diagnose your React Native apps.
10 lines • 354 B
TypeScript
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;
//# sourceMappingURL=networking.d.ts.map