js apis: missing method for idb object store (#664)

Co-authored-by: noblemaster <contact@noblemaster.com>
This commit is contained in:
Christoph Aschwanden 2023-02-17 19:38:14 +01:00 committed by GitHub
parent 900f95c1ed
commit 8005ba54ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,6 +45,8 @@ public abstract class IDBObjectStore implements JSObject, IDBCursorSource {
@JSProperty
public abstract boolean isAutoIncrement();
public abstract IDBGetRequest getAllKeys();
public abstract IDBRequest put(JSObject value, JSObject key);
public abstract IDBRequest put(JSObject value);