LibWeb/IDB: Implement IDBIndex::getKey

This commit is contained in:
stelar7 2025-05-13 22:21:57 +02:00 committed by Jelle Raaijmakers
commit 47450bc15c
Notes: github-actions[bot] 2025-05-14 15:19:29 +00:00
5 changed files with 48 additions and 1 deletions

View file

@ -52,5 +52,6 @@ JS::Value retrieve_a_key_from_an_object_store(JS::Realm&, GC::Ref<ObjectStore>,
GC::Ref<JS::Array> retrieve_multiple_values_from_an_object_store(JS::Realm&, GC::Ref<ObjectStore>, GC::Ref<IDBKeyRange>, Optional<WebIDL::UnsignedLong>);
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>);
}