aboutsummaryrefslogtreecommitdiff
path: root/packages/idb-bridge
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2022-01-05 17:07:43 +0100
committerFlorian Dold <florian@dold.me>2022-01-05 17:07:43 +0100
commit6abb65c70bfd1289f3824d4f37346cee7c139417 (patch)
tree2fb29823877e8b5ed03d4f2ccd98a358232ac0dd /packages/idb-bridge
parentdc040ba41cd6d66fa63b33ed1adfc80f7e6a6861 (diff)
downloadwallet-core-6abb65c70bfd1289f3824d4f37346cee7c139417.tar.xz
idb-bridge: fix types
Diffstat (limited to 'packages/idb-bridge')
-rw-r--r--packages/idb-bridge/src/idbtypes.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/idb-bridge/src/idbtypes.ts b/packages/idb-bridge/src/idbtypes.ts
index 5fc58e88b..a7878c38f 100644
--- a/packages/idb-bridge/src/idbtypes.ts
+++ b/packages/idb-bridge/src/idbtypes.ts
@@ -267,7 +267,7 @@ export interface IDBCursor {
/**
* Returns the IDBObjectStore or IDBIndex the cursor was opened from.
*/
- readonly source: IDBObjectStore | IDBIndex | IDBCursor;
+ readonly source: IDBObjectStore | IDBIndex;
/**
* Advances the cursor through the next count records in range.
*/