UNPKG

@sentry/react-native

Version:
16 lines (15 loc) 595 B
import type { ConfigPlugin } from 'expo/config-plugins'; import type { SentryAndroidGradlePluginOptions } from './withSentryAndroidGradlePlugin'; interface PluginProps { organization?: string; project?: string; authToken?: string; url?: string; useNativeInit?: boolean; disableAutoUpload?: boolean; options?: Record<string, unknown>; experimental_android?: SentryAndroidGradlePluginOptions; } export declare function getSentryProperties(props: PluginProps | void): string | null; declare const withSentry: ConfigPlugin<void | PluginProps>; export { withSentry };