-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathindex.ts
More file actions
17 lines (15 loc) · 584 Bytes
/
index.ts
File metadata and controls
17 lines (15 loc) · 584 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// import/export got a false positive, and affects most of our index barrel files
// can be removed once following issue is fixed: https://github.com/import-js/eslint-plugin-import/issues/703
/* eslint-disable import/export */
export type { ErrorHandlerOptions } from './errorhandler';
export * from '@sentry/browser';
export { init, getDefaultIntegrations } from './sdk';
export { createErrorHandler, SentryErrorHandler } from './errorhandler';
export {
browserTracingIntegration,
TraceClass,
TraceMethod,
TraceDirective,
TraceModule,
TraceService,
} from './tracing';