torque-pro-assistant - v1.0.0
    Preparing search index...

    Interface Session

    A complete session — metadata + the row data. Sessions persist in the Redux store; the row data is large (~1 MB per 30-minute session), so consumers that only need meta should select against SessionMeta directly.

    interface Session {
        data: readonly SessionDataRow[];
        meta: SessionMeta;
    }
    Index

    Properties

    Properties

    data: readonly SessionDataRow[]