From 8c7e13f40feb16351cc3d7a92f8b6805f5fa21a0 Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Thu, 12 Aug 2021 12:38:44 -0700 Subject: [PATCH] Start migrating Transaction to TypeScript --- src/matrix/storage/idb/Storage.js | 2 +- src/matrix/storage/idb/{Transaction.js => Transaction.ts} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/matrix/storage/idb/{Transaction.js => Transaction.ts} (100%) diff --git a/src/matrix/storage/idb/Storage.js b/src/matrix/storage/idb/Storage.js index cef636fb..ad155a17 100644 --- a/src/matrix/storage/idb/Storage.js +++ b/src/matrix/storage/idb/Storage.js @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -import {Transaction} from "./Transaction.js"; +import {Transaction} from "./Transaction"; import { STORE_NAMES, StorageError } from "../common"; import { reqAsPromise } from "./utils"; diff --git a/src/matrix/storage/idb/Transaction.js b/src/matrix/storage/idb/Transaction.ts similarity index 100% rename from src/matrix/storage/idb/Transaction.js rename to src/matrix/storage/idb/Transaction.ts