Skip to content

Commit

Permalink
chore: export some types (#1710)
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldambra authored Jan 31, 2025
1 parent 928a748 commit e0e5fa9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/extensions/replay/sessionrecording.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,12 @@ const newQueuedEvent = (rrwebMethod: () => void): QueuedRRWebEvent => ({
attempt: 1,
})

type compressedFullSnapshotEvent = {
export type compressedFullSnapshotEvent = {
type: EventType.FullSnapshot
data: string
}

type compressedIncrementalSnapshotEvent = {
export type compressedIncrementalSnapshotEvent = {
type: EventType.IncrementalSnapshot
data: {
source: IncrementalSource
Expand All @@ -141,7 +141,7 @@ type compressedIncrementalSnapshotEvent = {
}
}

type compressedIncrementalStyleSnapshotEvent = {
export type compressedIncrementalStyleSnapshotEvent = {
type: EventType.IncrementalSnapshot
data: {
source: IncrementalSource.StyleSheetRule
Expand Down

0 comments on commit e0e5fa9

Please sign in to comment.