Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Some changes to get package to build, presumably after a merge from m…
…aster
  • Loading branch information
eoghanmurray committed Sep 4, 2025
commit 040d9bb7b19106d311c8b3306199740388465da5
7 changes: 3 additions & 4 deletions packages/rrweb-cutter/src/cut-session.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { NodeType } from 'rrweb-snapshot';
import {
import { NodeType, MediaInteractions } from '@rrweb/types';
import type {
adoptedStyleSheetData,
eventWithTime,
MediaInteractions,
styleDeclarationData,
styleSheetRuleData,
} from '@rrweb/types';
Expand All @@ -15,7 +14,7 @@ import {
} from 'rrdom';
import type { IRRNode, RRElement } from 'rrdom';
import { IncrementalSource, EventType, SyncReplayer } from 'rrweb';
import { playerConfig } from 'rrweb/typings/types';
import type { playerConfig } from '@rrweb/replay';
import cloneDeep from 'lodash.clonedeep';
import snapshot from './snapshot';
export type CutterConfig = {
Expand Down
2 changes: 1 addition & 1 deletion packages/rrweb-cutter/src/prune-branches.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { serializedNodeWithId } from 'rrweb-snapshot';
import type {
serializedNodeWithId,
addedNodeMutation,
eventWithTime,
mousePosition,
Expand Down
5 changes: 3 additions & 2 deletions packages/rrweb-cutter/src/snapshot.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import type { serializedNodeWithId, attributes } from 'rrweb-snapshot';
import { elementNode, NodeType, serializedNode } from 'rrweb-snapshot';
import type { elementNode, serializedNode, serializedNodeWithId, attributes } from '@rrweb/types';
import { NodeType } from '@rrweb/types';

import type {
IRRComment,
IRRDocument,
Expand Down