UNPKG

@hackler/react-native-sdk

Version:

React Native SDK for Hackle

11 lines (10 loc) 397 B
import { PropsWithChildren } from 'react'; import type { ReactNativeSDKClient } from '../client'; import type { User } from '../models'; interface Props { hackleClient: ReactNativeSDKClient; timeout?: number; user?: User | null; } export declare function HackleProvider({ hackleClient, user: initialUser, timeout, children, }: PropsWithChildren<Props>): JSX.Element | null; export {};