@qtsurfer/api-client
    Preparing search index...

    Type Alias LiveSignalPage

    One page of a run's recorded signals, oldest first.

    type LiveSignalPage = {
        _links?: PublicLiveListLinks;
        availableSinceMs?: number;
        signals: LiveSignal[];
    }
    Index
    availableSinceMs?: number

    The oldest moment this run's signals can still be read from. Absent when the run has produced nothing yet. It moves forward over time as older signals are discarded, so a sinceMs earlier than this is served from here instead.

    signals: LiveSignal[]