Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions packages/replay/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export { Replay } from './integration';
export type {
eventWithTime,
BreadcrumbFrame,
BreadcrumbFrameEvent,
OptionFrameEvent,
Expand All @@ -8,7 +9,3 @@ export type {
SpanFrame,
SpanFrameEvent,
} from './types';
export { EventType } from '@sentry-internal/rrweb';
export { NodeType } from '@sentry-internal/rrweb-snapshot';
export type { eventWithTime, fullSnapshotEvent } from '@sentry-internal/rrweb';
export type { serializedNodeWithId } from '@sentry-internal/rrweb-snapshot';
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import type { EventType } from '@sentry-internal/rrweb';
import * as SentryCore from '@sentry/core';
import type { Transport } from '@sentry/types';
import * as SentryUtils from '@sentry/utils';

import type { EventType, Replay } from '../../src';
import type { Replay } from '../../src';
import type { ReplayContainer } from '../../src/replay';
import { clearSession } from '../../src/session/clearSession';
import * as SendReplayRequest from '../../src/util/sendReplayRequest';
Expand Down