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

    Interface CursorEntry

    CursorEntry is one streamed cursor row.

    interface CursorEntry {
        key: KeyValue[];
        primaryKey: string;
        record?: Record;
    }
    Index

    Properties

    key: KeyValue[]

    Key components per index KeyPath field. Each component is a KeyValue that can be a scalar or a nested array, preserving the full W3C IndexedDB key structure including array-valued keys.

    primaryKey: string
    record?: Record