LibWeb/IDB: Implement count_the_records_in_a_range

This commit is contained in:
stelar7 2025-04-28 15:51:35 +02:00 committed by Jelle Raaijmakers
commit 694375d3ac
Notes: github-actions[bot] 2025-04-29 15:07:58 +00:00
4 changed files with 22 additions and 0 deletions

View file

@ -42,5 +42,6 @@ void inject_a_key_into_a_value_using_a_key_path(JS::Realm&, JS::Value, GC::Ref<K
void delete_records_from_an_object_store(GC::Ref<ObjectStore>, GC::Ref<IDBKeyRange>);
WebIDL::ExceptionOr<GC::Ptr<Key>> store_a_record_into_an_object_store(JS::Realm&, GC::Ref<ObjectStore>, JS::Value, GC::Ptr<Key>, bool);
WebIDL::ExceptionOr<GC::Ref<IDBKeyRange>> convert_a_value_to_a_key_range(JS::Realm&, Optional<JS::Value>, bool = false);
JS::Value count_the_records_in_a_range(GC::Ref<ObjectStore>, GC::Ref<IDBKeyRange>);
}