LibWeb/IDB: Implement IDBObjectStore::deleteIndex

This commit is contained in:
stelar7 2025-04-01 18:57:59 +02:00 committed by Andrew Kaster
commit 718c805e95
Notes: github-actions[bot] 2025-04-09 17:50:24 +00:00
3 changed files with 35 additions and 1 deletions

View file

@ -23,7 +23,7 @@ interface IDBObjectStore {
[FIXME, NewObject] IDBRequest openKeyCursor(optional any query, optional IDBCursorDirection direction = "next");
IDBIndex index(DOMString name);
[NewObject] IDBIndex createIndex(DOMString name, (DOMString or sequence<DOMString>) keyPath, optional IDBIndexParameters options = {});
[FIXME] undefined deleteIndex(DOMString name);
undefined deleteIndex(DOMString name);
};
dictionary IDBIndexParameters {