pond-ts API Reference (core)
    Preparing search index...

    Type Alias IntervalKeyAt

    Shape returned by IntervalKeyColumn.at(i) — the begin / end timestamps plus the row's label (discriminated by labelKind on the column). Numeric labels are finite; string labels come from the dictionary-encoded label column. Same read-only-by-convention note as TimeRangeKeyAtreadonly is compile-time only.

    type IntervalKeyAt = {
        begin: number;
        end: number;
        label: string | number;
    }
    Index

    Properties

    Properties

    begin: number
    end: number
    label: string | number