LibWeb/IDB: Implement IDBIndex::getAll

This commit is contained in:
stelar7
2025-05-13 22:41:18 +02:00
committed by Jelle Raaijmakers
parent 47450bc15c
commit 3fa1d1299c
Notes: github-actions[bot] 2025-05-14 15:19:24 +00:00
7 changed files with 80 additions and 1 deletions

View File

@@ -9,7 +9,7 @@ interface IDBIndex {
readonly attribute boolean unique;
[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);
[FIXME, NewObject] IDBRequest count(optional any query);
[NewObject] IDBRequest openCursor(optional any query, optional IDBCursorDirection direction = "next");