LibWeb/IDB: Implement IDBIndex::getAll

This commit is contained in:
stelar7 2025-05-13 22:41:18 +02:00 committed by Jelle Raaijmakers
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

@ -53,5 +53,6 @@ GC::Ref<JS::Array> retrieve_multiple_values_from_an_object_store(JS::Realm&, GC:
GC::Ref<JS::Array> retrieve_multiple_keys_from_an_object_store(JS::Realm&, GC::Ref<ObjectStore>, GC::Ref<IDBKeyRange>, Optional<WebIDL::UnsignedLong>);
JS::Value retrieve_a_referenced_value_from_an_index(JS::Realm&, GC::Ref<Index>, GC::Ref<IDBKeyRange>);
JS::Value retrieve_a_value_from_an_index(JS::Realm&, GC::Ref<Index>, GC::Ref<IDBKeyRange>);
GC::Ref<JS::Array> retrieve_multiple_referenced_values_from_an_index(JS::Realm&, GC::Ref<Index>, GC::Ref<IDBKeyRange>, Optional<WebIDL::UnsignedLong>);
}