From 3ec222eae3a01d65ba8a3265bc367601d7b98784 Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Wed, 11 Aug 2021 15:35:28 -0700 Subject: [PATCH] Start migrating TimelineFragmentStore.js to TypeScript --- src/matrix/storage/idb/Transaction.js | 2 +- .../{TimelineFragmentStore.js => TimelineFragmentStore.ts} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/matrix/storage/idb/stores/{TimelineFragmentStore.js => TimelineFragmentStore.ts} (100%) diff --git a/src/matrix/storage/idb/Transaction.js b/src/matrix/storage/idb/Transaction.js index 4a7b66fe..5732b321 100644 --- a/src/matrix/storage/idb/Transaction.js +++ b/src/matrix/storage/idb/Transaction.js @@ -24,7 +24,7 @@ import {TimelineEventStore} from "./stores/TimelineEventStore"; import {TimelineRelationStore} from "./stores/TimelineRelationStore"; import {RoomStateStore} from "./stores/RoomStateStore"; import {RoomMemberStore} from "./stores/RoomMemberStore"; -import {TimelineFragmentStore} from "./stores/TimelineFragmentStore.js"; +import {TimelineFragmentStore} from "./stores/TimelineFragmentStore"; import {PendingEventStore} from "./stores/PendingEventStore.js"; import {UserIdentityStore} from "./stores/UserIdentityStore.js"; import {DeviceIdentityStore} from "./stores/DeviceIdentityStore.js"; diff --git a/src/matrix/storage/idb/stores/TimelineFragmentStore.js b/src/matrix/storage/idb/stores/TimelineFragmentStore.ts similarity index 100% rename from src/matrix/storage/idb/stores/TimelineFragmentStore.js rename to src/matrix/storage/idb/stores/TimelineFragmentStore.ts