Skip to content

Commit 7bfd0e9

Browse files
committed
lint
1 parent c00f9c1 commit 7bfd0e9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/replay/src/replay.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import { deleteSession } from './session/deleteSession';
2424
import { getSession } from './session/getSession';
2525
import { saveSession } from './session/saveSession';
2626
import type {
27+
AddEventResult,
2728
AddUpdateCallback,
2829
AllPerformanceEntry,
2930
EventBuffer,
@@ -36,7 +37,6 @@ import type {
3637
ReplayPluginOptions,
3738
SendReplay,
3839
Session,
39-
AddEventResult,
4040
} from './types';
4141
import { addEvent } from './util/addEvent';
4242
import { addMemoryEntry } from './util/addMemoryEntry';

packages/replay/src/util/addEvent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { SESSION_IDLE_DURATION } from '../constants';
2-
import type { AddEventResult,RecordingEvent, ReplayContainer } from '../types';
2+
import type { AddEventResult, RecordingEvent, ReplayContainer } from '../types';
33

44
/**
55
* Add an event to the event buffer

packages/replay/src/util/createPerformanceSpans.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { EventType } from 'rrweb';
22

3-
import type { AddEventResult,ReplayContainer, ReplayPerformanceEntry } from '../types';
3+
import type { AddEventResult, ReplayContainer, ReplayPerformanceEntry } from '../types';
44
import { addEvent } from './addEvent';
55

66
/**

0 commit comments

Comments
 (0)