* Type definitions for IndexedDB 3.0 features (Interop 2026) * - getAll(options) and getAllKeys(options) with direction parameter * - getAllRecords() for retrieving records with keys * @see https://developer.mozilla.org/en-US/docs/Web/API/IDBIndex/getAll * @see https://w3c.github.io/IndexedDB/
| 24 | * @see https://w3c.github.io/IndexedDB/ |
| 25 | */ |
| 26 | interface IDBGetAllOptions { |
| 27 | query?: IDBKeyRange | IDBValidKey | null; |
| 28 | count?: number; |
| 29 | direction?: IDBCursorDirection; |
| 30 | } |
| 31 | |
| 32 | interface IDBRecord<T = any> { |
| 33 | key: IDBValidKey; |
nothing calls this directly
no outgoing calls
no test coverage detected