Skip to content

Commit

Permalink
feat(core): Export IntegrationIndex type (#10337)
Browse files Browse the repository at this point in the history
adds the export and fixes the faulty import
  • Loading branch information
Lms24 authored Jan 25, 2024
1 parent b2d7de8 commit b7af3fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/core/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export type { AsyncContextStrategy, Carrier, Layer, RunWithAsyncContextOptions }
export type { OfflineStore, OfflineTransportOptions } from './transports/offline';
export type { ServerRuntimeClientOptions } from './server-runtime-client';
export type { RequestDataIntegrationOptions } from './integrations/requestdata';
export type { IntegrationIndex } from './integration';

export * from './tracing';
export * from './semanticAttributes';
Expand Down
3 changes: 1 addition & 2 deletions packages/replay/src/util/prepareReplayEvent.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import type { Scope } from '@sentry/core';
import type { IntegrationIndex, Scope } from '@sentry/core';
import { getIsolationScope } from '@sentry/core';
import { prepareEvent } from '@sentry/core';
import type { IntegrationIndex } from '@sentry/core/build/types/integration';
import type { Client, EventHint, ReplayEvent } from '@sentry/types';

/**
Expand Down

0 comments on commit b7af3fc

Please sign in to comment.