From 68ee960b0ca36afc035be455a0fc694f2672d22c Mon Sep 17 00:00:00 2001 From: Jesse Wang Date: Fri, 18 Oct 2024 10:57:03 -0700 Subject: [PATCH] chore(rrweb): fix issue typing issue --- packages/web-extension/src/utils/storage.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/web-extension/src/utils/storage.ts b/packages/web-extension/src/utils/storage.ts index 934ab08d51..55369b76da 100644 --- a/packages/web-extension/src/utils/storage.ts +++ b/packages/web-extension/src/utils/storage.ts @@ -1,6 +1,6 @@ -import { eventWithTime } from '@amplitude/rrweb-types'; +import type { eventWithTime } from '@amplitude/rrweb-types'; import { openDB } from 'idb'; -import { Session } from '~/types'; +import type { Session } from '~/types'; /** * Storage related functions with indexedDB.