sentry-expo
Version:
Catch your Javascript errors for your production Expo apps!
11 lines • 536 B
TypeScript
import type { BrowserOptions } from '@sentry/react';
import type { Integration } from '@sentry/types';
import type { ReactNativeOptions } from '@sentry/react-native';
export interface SentryExpoWebOptions extends BrowserOptions {
enableInExpoDevelopment?: boolean;
}
export interface SentryExpoNativeOptions extends ReactNativeOptions {
enableInExpoDevelopment?: boolean;
}
export declare function overrideDefaultIntegrations(defaults: Integration[], overrides: Integration[]): Integration[];
//# sourceMappingURL=utils.d.ts.map