LibWeb/IDB: Implement IDBIndex::getAllKeys

This commit is contained in:
stelar7
2025-05-13 22:46:23 +02:00
committed by Jelle Raaijmakers
parent 3fa1d1299c
commit b8bb8345a9
Notes: github-actions[bot] 2025-05-14 15:19:19 +00:00
5 changed files with 62 additions and 1 deletions

View File

@@ -54,5 +54,6 @@ GC::Ref<JS::Array> retrieve_multiple_keys_from_an_object_store(JS::Realm&, GC::R
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>);
GC::Ref<JS::Array> retrieve_multiple_values_from_an_index(JS::Realm&, GC::Ref<Index>, GC::Ref<IDBKeyRange>, Optional<WebIDL::UnsignedLong>);
}