UNPKG

react-native-xenon

Version:

A powerful in-app debugging tool for React Native.

13 lines 442 B
import type { LogMessage } from '../types'; interface ConsoleInterceptorParams { autoEnabled: boolean; } export default function useConsoleInterceptor({ autoEnabled }: ConsoleInterceptorParams): { isInterceptorEnabled: boolean; enableInterception: () => void; disableInterception: () => void; clearAllLogMessages: () => void; logMessages: LogMessage[]; }; export {}; //# sourceMappingURL=useConsoleInterceptor.d.ts.map