From 3128e072fd988240d48d5145768f987a742c7de7 Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Thu, 12 Aug 2021 10:33:05 -0700 Subject: [PATCH] Start migrating OutboundGroupSessionStore to TypeScript --- src/matrix/storage/idb/Transaction.js | 2 +- ...utboundGroupSessionStore.js => OutboundGroupSessionStore.ts} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/matrix/storage/idb/stores/{OutboundGroupSessionStore.js => OutboundGroupSessionStore.ts} (100%) diff --git a/src/matrix/storage/idb/Transaction.js b/src/matrix/storage/idb/Transaction.js index 388434c8..a8f90114 100644 --- a/src/matrix/storage/idb/Transaction.js +++ b/src/matrix/storage/idb/Transaction.js @@ -30,7 +30,7 @@ import {UserIdentityStore} from "./stores/UserIdentityStore"; import {DeviceIdentityStore} from "./stores/DeviceIdentityStore"; import {OlmSessionStore} from "./stores/OlmSessionStore"; import {InboundGroupSessionStore} from "./stores/InboundGroupSessionStore"; -import {OutboundGroupSessionStore} from "./stores/OutboundGroupSessionStore.js"; +import {OutboundGroupSessionStore} from "./stores/OutboundGroupSessionStore"; import {GroupSessionDecryptionStore} from "./stores/GroupSessionDecryptionStore.js"; import {OperationStore} from "./stores/OperationStore.js"; import {AccountDataStore} from "./stores/AccountDataStore.js"; diff --git a/src/matrix/storage/idb/stores/OutboundGroupSessionStore.js b/src/matrix/storage/idb/stores/OutboundGroupSessionStore.ts similarity index 100% rename from src/matrix/storage/idb/stores/OutboundGroupSessionStore.js rename to src/matrix/storage/idb/stores/OutboundGroupSessionStore.ts