@valon-technologies/gestalt
    Preparing search index...

    Interface IndexedDBCursorSnapshotEntry

    One provider-side cursor row.

    interface IndexedDBCursorSnapshotEntry {
        key: unknown;
        primaryKey: string;
        primaryKeyValue?: unknown;
        record?: Record;
    }
    Index

    Properties

    key: unknown

    Object-store key, or secondary-index key for index cursors.

    primaryKey: string

    Canonical primary key for the object-store row.

    primaryKeyValue?: unknown

    Native primary-key value used as a stable tie-breaker for duplicate index keys.

    record?: Record

    Row value returned by full-value cursors.