Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

IDBCursorWithValue

import { IDBCursorWithValue } from "https://raw.githubusercontent.com/aaronhuggins/indexeddb/main/ponyfill.ts";

This IndexedDB API interface represents a cursor for traversing or iterating over multiple records in a database. It is the same as the IDBCursor, except that it includes the value property.

interface IDBCursorWithValue extends IDBCursor {
prototype: IDBCursorWithValue;
readonly value: any;
}
const IDBCursorWithValue;

§Extends

§Properties

§
readonly value: any
[src]

Returns the cursor's current value.

§Methods