Member Junction
    Preparing search index...

    One loaded record in the comparison. Mirrors the engine's RecordComparisonRecord.

    interface RecordComparisonRecord {
        ColumnIndex: number;
        Key: unknown;
        Label: string;
        Values: Record<string, RecordComparisonFieldValue>;
    }
    Index

    Properties

    ColumnIndex: number

    Zero-based index aligned with the input Keys array (the comparison column).

    Key: unknown

    The composite key identifying this record (as supplied in the input).

    Label: string

    A human-readable label for the record.

    Values: Record<string, RecordComparisonFieldValue>

    Plain field-name → value map for this record (only the compared fields).