Contextual information provided to track stages.

interface TrackSeriesContext {
    context: LDContext;
    data?: unknown;
    key: string;
    metricValue?: number;
}

Properties

context: LDContext

The context associated with the track operation.

data?: unknown

The data associated with the track operation.

key: string

The key for the event being tracked.

metricValue?: number

The metric value associated with the track operation.