-
-
Notifications
You must be signed in to change notification settings - Fork 358
Expand file tree
/
Copy pathindex.ts
More file actions
104 lines (93 loc) · 2.21 KB
/
index.ts
File metadata and controls
104 lines (93 loc) · 2.21 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
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,
} 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 } from './options';
export { ReactNativeClient } from './client';
export { init, wrap, nativeCrash, flush, close, withScope, crashedLastRun } from './sdk';
export { TouchEventBoundary, withTouchEventBoundary } from './touchevents';
export {
reactNativeTracingIntegration,
getCurrentReactNativeTracingIntegration,
getReactNativeTracingIntegration,
reactNavigationIntegration,
reactNativeNavigationIntegration,
sentryTraceGesture,
TimeToInitialDisplay,
TimeToFullDisplay,
startTimeToInitialDisplaySpan,
startTimeToFullDisplaySpan,
startIdleNavigationSpan,
startIdleSpan,
getDefaultIdleNavigationSpanOptions,
createTimeToFullDisplay,
createTimeToInitialDisplay,
} from './tracing';
export type { TimeToDisplayProps } from './tracing';
export { Mask, Unmask } from './replay/CustomMask';
export { FeedbackButton } from './feedback/FeedbackButton';
export { FeedbackWidget } from './feedback/FeedbackWidget';
export { showFeedbackWidget, showFeedbackButton, hideFeedbackButton } from './feedback/FeedbackWidgetManager';
export { getDataFromUri } from './wrapper';