UNPKG

react-native-xenon

Version:

A powerful in-app debugging tool for React Native.

12 lines 556 B
import type { Updater } from 'use-immer'; import type { useConsoleInterceptor, useNetworkInterceptor } from '../hooks'; import type { DebuggerState } from '../types'; interface MainContextValue { debuggerState: DebuggerState; setDebuggerState: Updater<DebuggerState>; networkInterceptor: ReturnType<typeof useNetworkInterceptor>; consoleInterceptor: ReturnType<typeof useConsoleInterceptor>; } declare const MainContext: import("react").Context<MainContextValue | null>; export default MainContext; //# sourceMappingURL=MainContext.d.ts.map