We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9506279 commit bb2c453Copy full SHA for bb2c453
packages/replay/test/utils/getTestEvent.ts
@@ -1,3 +1,4 @@
1
+// eslint-disable-next-line deprecation/deprecation
2
import type { ReplayEventType, ReplayEventWithTime } from '../../src';
3
import { ReplayEventTypeFullSnapshot, ReplayEventTypeIncrementalSnapshot } from '../../src/types';
4
@@ -8,7 +9,9 @@ export function getTestEvent({
8
9
}: {
10
timestamp: number;
11
data?: any;
12
+ // eslint-disable-next-line deprecation/deprecation
13
type: ReplayEventType;
14
15
}): ReplayEventWithTime {
16
return {
17
data: data || {},
0 commit comments