-
-
Notifications
You must be signed in to change notification settings - Fork 359
Expand file tree
/
Copy pathindex.ts
More file actions
120 lines (108 loc) · 3.13 KB
/
index.ts
File metadata and controls
120 lines (108 loc) · 3.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
export type {
Breadcrumb,
SdkInfo,
Event,
Exception,
SendFeedbackParams,
SeverityLevel,
Span,
StackFrame,
Stacktrace,
Thread,
User,
UserFeedback,
ErrorEvent,
TransactionEvent,
Metric,
} from '@sentry/core';
export {
addBreadcrumb,
addIntegration,
captureException,
captureEvent,
captureFeedback,
captureMessage,
Scope,
setContext,
setExtra,
setExtras,
setTag,
setTags,
setUser,
startInactiveSpan,
startSpan,
startSpanManual,
getActiveSpan,
getRootSpan,
withActiveSpan,
suppressTracing,
spanToJSON,
spanIsSampled,
setMeasurement,
getCurrentScope,
getGlobalScope,
getIsolationScope,
getClient,
setCurrentClient,
addEventProcessor,
lastEventId,
consoleSandbox,
} from '@sentry/core';
export {
ErrorBoundary,
withErrorBoundary,
createReduxEnhancer,
Profiler,
useProfiler,
withProfiler,
} from '@sentry/react';
export {
logger,
consoleLoggingIntegration,
featureFlagsIntegration,
type FeatureFlagsIntegration,
metrics,
} from '@sentry/browser';
export * from './integrations/exports';
export { SDK_NAME, SDK_VERSION } from './version';
export type { ReactNativeOptions, NativeLogEntry } from './options';
export { ReactNativeClient } from './client';
export { init, wrap, nativeCrash, flush, close, withScope, crashedLastRun, appLoaded } from './sdk';
export { TouchEventBoundary, withTouchEventBoundary } from './touchevents';
export { GlobalErrorBoundary, withGlobalErrorBoundary } from './GlobalErrorBoundary';
export type { GlobalErrorBoundaryProps } from './GlobalErrorBoundary';
export {
reactNativeTracingIntegration,
getCurrentReactNativeTracingIntegration,
getReactNativeTracingIntegration,
reactNavigationIntegration,
reactNativeNavigationIntegration,
sentryTraceGesture,
TimeToInitialDisplay,
TimeToFullDisplay,
startTimeToInitialDisplaySpan,
startTimeToFullDisplaySpan,
startIdleNavigationSpan,
startIdleSpan,
getDefaultIdleNavigationSpanOptions,
createTimeToFullDisplay,
createTimeToInitialDisplay,
wrapExpoRouter,
wrapExpoImage,
wrapExpoAsset,
} from './tracing';
export type { TimeToDisplayProps, ExpoRouter, ExpoImage, ExpoAsset } from './tracing';
export { Mask, Unmask } from './replay/CustomMask';
/** @deprecated The `FeedbackButton` component will be removed in a future major version. */
export { FeedbackButton } from './feedback/FeedbackButton';
export { FeedbackForm } from './feedback/FeedbackForm';
export { showFeedbackForm, enableFeedbackOnShake, disableFeedbackOnShake } from './feedback/FeedbackFormManager';
/** @deprecated `showFeedbackButton` will be removed in a future major version. */
export { showFeedbackButton } from './feedback/FeedbackFormManager';
/** @deprecated `hideFeedbackButton` will be removed in a future major version. */
export { hideFeedbackButton } from './feedback/FeedbackFormManager';
/** @deprecated Use `FeedbackForm` instead. */
export { FeedbackForm as FeedbackWidget } from './feedback/FeedbackForm';
/** @deprecated Use `showFeedbackForm` instead. */
export { showFeedbackForm as showFeedbackWidget } from './feedback/FeedbackFormManager';
export { getDataFromUri } from './wrapper';