mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
18 lines
949 B
Text
18 lines
949 B
Text
|
#import <IndexedDB/IDBCursor.idl>
|
||
|
|
||
|
[Exposed=(Window,Worker)]
|
||
|
interface IDBIndex {
|
||
|
[FIXME] attribute DOMString name;
|
||
|
[FIXME, SameObject] readonly attribute IDBObjectStore objectStore;
|
||
|
[FIXME] readonly attribute any keyPath;
|
||
|
[FIXME] readonly attribute boolean multiEntry;
|
||
|
[FIXME] readonly attribute boolean unique;
|
||
|
[FIXME, NewObject] IDBRequest get(any query);
|
||
|
[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);
|
||
|
[FIXME, NewObject] IDBRequest openCursor(optional any query, optional IDBCursorDirection direction = "next");
|
||
|
[FIXME, NewObject] IDBRequest openKeyCursor(optional any query, optional IDBCursorDirection direction = "next");
|
||
|
};
|