Skip to content

Commit 13fa72a

Browse files
committed
lint
1 parent 587985e commit 13fa72a

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
@@ -22,6 +22,7 @@ import { createEventBuffer } from './eventBuffer';
2222
import { getSession } from './session/getSession';
2323
import { saveSession } from './session/saveSession';
2424
import type {
25+
AddEventResult,
2526
AddUpdateCallback,
2627
AllPerformanceEntry,
2728
EventBuffer,
@@ -34,7 +35,6 @@ import type {
3435
ReplayPluginOptions,
3536
SendReplay,
3637
Session,
37-
AddEventResult,
3838
} from './types';
3939
import { addEvent } from './util/addEvent';
4040
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)