summaryrefslogtreecommitdiff
path: root/src/util/query.ts
diff options
context:
space:
mode:
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) {}