LibWeb/IDB: Implement is_a_potentially_valid_key_range

This commit is contained in:
stelar7
2025-07-09 11:19:14 +02:00
committed by Jelle Raaijmakers
parent 89f94845cf
commit 87af53a613
Notes: github-actions[bot] 2025-08-27 14:15:57 +00:00
2 changed files with 32 additions and 0 deletions

View File

@@ -58,5 +58,6 @@ GC::Ref<JS::Array> retrieve_multiple_referenced_values_from_an_index(JS::Realm&,
GC::Ref<JS::Array> retrieve_multiple_values_from_an_index(JS::Realm&, GC::Ref<Index>, GC::Ref<IDBKeyRange>, Optional<WebIDL::UnsignedLong>);
void queue_a_database_task(GC::Ref<GC::Function<void()>>);
bool cleanup_indexed_database_transactions(GC::Ref<HTML::EventLoop>);
bool is_a_potentially_valid_key_range(JS::Realm&, JS::Value);
}