mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 12:19:54 +00:00
LibWeb/IDB: Implement IDBObjectStore::index
This commit is contained in:
parent
fba7ad6969
commit
fce936e05a
Notes:
github-actions[bot]
2025-04-09 17:50:32 +00:00
Author: https://github.com/stelar7
Commit: fce936e05a
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4178
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/AtkinsSJ
3 changed files with 26 additions and 1 deletions
|
@ -21,7 +21,7 @@ interface IDBObjectStore {
|
|||
[FIXME, 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");
|
||||
[FIXME] IDBIndex index(DOMString name);
|
||||
IDBIndex index(DOMString name);
|
||||
[NewObject] IDBIndex createIndex(DOMString name, (DOMString or sequence<DOMString>) keyPath, optional IDBIndexParameters options = {});
|
||||
[FIXME] undefined deleteIndex(DOMString name);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue