Skip to content

Commit b7af3fc

Browse files
authored
feat(core): Export IntegrationIndex type (#10337)
adds the export and fixes the faulty import
1 parent b2d7de8 commit b7af3fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/core/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ export type { AsyncContextStrategy, Carrier, Layer, RunWithAsyncContextOptions }
33
export type { OfflineStore, OfflineTransportOptions } from './transports/offline';
44
export type { ServerRuntimeClientOptions } from './server-runtime-client';
55
export type { RequestDataIntegrationOptions } from './integrations/requestdata';
6+
export type { IntegrationIndex } from './integration';
67

78
export * from './tracing';
89
export * from './semanticAttributes';

packages/replay/src/util/prepareReplayEvent.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
import type { Scope } from '@sentry/core';
1+
import type { IntegrationIndex, Scope } from '@sentry/core';
22
import { getIsolationScope } from '@sentry/core';
33
import { prepareEvent } from '@sentry/core';
4-
import type { IntegrationIndex } from '@sentry/core/build/types/integration';
54
import type { Client, EventHint, ReplayEvent } from '@sentry/types';
65

76
/**

0 commit comments

Comments
 (0)