UNPKG

314 BTypeScriptView Raw
1import type { ReactotronCore } from "reactotron-core-client";
2export interface NetworkingOptions {
3 ignoreContentTypes?: RegExp;
4 ignoreUrls?: RegExp;
5}
6declare const networking: (pluginConfig?: NetworkingOptions) => (reactotron: ReactotronCore) => {
7 onConnect: () => void;
8};
9export default networking;