aboutsummaryrefslogtreecommitdiff
path: root/src/util/query.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-04-06 23:32:01 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-04-06 23:32:01 +0530
commit47787c0b0b846d5f4a057661efdd05d8786032f1 (patch)
tree3a3d58a5ebad8af584de6a6cd882c2019f71dffa /src/util/query.ts
parentf36bb7a04eabe0330cb166bf9ce5021c92f38dc8 (diff)
downloadwallet-core-47787c0b0b846d5f4a057661efdd05d8786032f1.tar.xz
make linter less grumpy
Diffstat (limited to 'src/util/query.ts')
-rw-r--r--src/util/query.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/util/query.ts b/src/util/query.ts
index 44f668658..d11b79a96 100644
--- a/src/util/query.ts
+++ b/src/util/query.ts
@@ -26,6 +26,11 @@
import { openPromise } from "./promiseUtils";
/**
+ * Exception that should be thrown by client code to abort a transaction.
+ */
+export const TransactionAbort = Symbol("transaction_abort");
+
+/**
* Definition of an object store.
*/
export class Store<T> {
@@ -430,11 +435,6 @@ export function openDatabase(
});
}
-/**
- * Exception that should be thrown by client code to abort a transaction.
- */
-export const TransactionAbort = Symbol("transaction_abort");
-
export class Database {
constructor(private db: IDBDatabase) {}