LibWeb/IDB: Implement IDBObjectStore::getAll

This commit is contained in:
stelar7 2025-05-08 23:36:31 +02:00 committed by Shannon Booth
commit c700bfaaf1
Notes: github-actions[bot] 2025-05-12 20:29:30 +00:00
3 changed files with 33 additions and 1 deletions

View file

@ -16,7 +16,7 @@ interface IDBObjectStore {
[NewObject] IDBRequest clear();
[NewObject] IDBRequest get(any query);
[NewObject] IDBRequest getKey(any query);
[FIXME, NewObject] IDBRequest getAll(optional any query, optional [EnforceRange] unsigned long count);
[NewObject] IDBRequest getAll(optional any query, optional [EnforceRange] unsigned long count);
[FIXME, NewObject] IDBRequest getAllKeys(optional any query, optional [EnforceRange] unsigned long count);
[NewObject] IDBRequest count(optional any query);
[NewObject] IDBRequest openCursor(optional any query, optional IDBCursorDirection direction = "next");