taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 6abb65c70bfd1289f3824d4f37346cee7c139417
parent dc040ba41cd6d66fa63b33ed1adfc80f7e6a6861
Author: Florian Dold <florian@dold.me>
Date:   Wed,  5 Jan 2022 17:07:43 +0100

idb-bridge: fix types

Diffstat:
Mpackages/idb-bridge/src/idbtypes.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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. */