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

IDBCursorWithValue

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 {
readonly value: any;
}
var IDBCursorWithValue: {
prototype: IDBCursorWithValue;
}
;

§Extends

§Properties

§
readonly value: any
[src]

Returns the cursor's current value.