From 46c306b4875901734439bd39da03464fda9565e9 Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Tue, 10 Aug 2021 12:31:03 -0700 Subject: [PATCH] Start migrating Store.js to TypeScript --- src/matrix/storage/idb/{Store.js => Store.ts} | 0 src/matrix/storage/idb/Transaction.js | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/matrix/storage/idb/{Store.js => Store.ts} (100%) diff --git a/src/matrix/storage/idb/Store.js b/src/matrix/storage/idb/Store.ts similarity index 100% rename from src/matrix/storage/idb/Store.js rename to src/matrix/storage/idb/Store.ts diff --git a/src/matrix/storage/idb/Transaction.js b/src/matrix/storage/idb/Transaction.js index d1c91d69..4c543f4c 100644 --- a/src/matrix/storage/idb/Transaction.js +++ b/src/matrix/storage/idb/Transaction.js @@ -16,7 +16,7 @@ limitations under the License. import {txnAsPromise} from "./utils"; import {StorageError} from "../common"; -import {Store} from "./Store.js"; +import {Store} from "./Store"; import {SessionStore} from "./stores/SessionStore.js"; import {RoomSummaryStore} from "./stores/RoomSummaryStore.js"; import {InviteStore} from "./stores/InviteStore.js";