MCPcopy
hub / github.com/dexie/Dexie.js / IDBGetAllOptions

Interface IDBGetAllOptions

src/public/types/global.d.ts:26–30  ·  view source on GitHub ↗

* 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/

Source from the content-addressed store, hash-verified

24 * @see https://w3c.github.io/IndexedDB/
25 */
26interface IDBGetAllOptions {
27 query?: IDBKeyRange | IDBValidKey | null;
28 count?: number;
29 direction?: IDBCursorDirection;
30}
31
32interface IDBRecord<T = any> {
33 key: IDBValidKey;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected