mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-28 13:18:19 +00:00
LibWeb/IDB: Implement IDBObjectStore::count
This commit is contained in:
parent
694375d3ac
commit
d5cf2cee41
Notes:
github-actions[bot]
2025-04-29 15:07:52 +00:00
Author: https://github.com/stelar7
Commit: d5cf2cee41
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4505
Reviewed-by: https://github.com/AtkinsSJ
Reviewed-by: https://github.com/gmta ✅
3 changed files with 33 additions and 1 deletions
|
@ -18,7 +18,7 @@ interface IDBObjectStore {
|
|||
[FIXME, NewObject] IDBRequest getKey(any query);
|
||||
[FIXME, NewObject] IDBRequest getAll(optional any query, optional [EnforceRange] unsigned long count);
|
||||
[FIXME, NewObject] IDBRequest getAllKeys(optional any query, optional [EnforceRange] unsigned long count);
|
||||
[FIXME, NewObject] IDBRequest count(optional any query);
|
||||
[NewObject] IDBRequest count(optional any query);
|
||||
[FIXME, NewObject] IDBRequest openCursor(optional any query, optional IDBCursorDirection direction = "next");
|
||||
[FIXME, NewObject] IDBRequest openKeyCursor(optional any query, optional IDBCursorDirection direction = "next");
|
||||
IDBIndex index(DOMString name);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue