supervision-js
    Preparing search index...

    Interface ColdDetectionFrameStorePruneOptions

    Prune options for bounded retention.

    Stores that implement pruneFrames drop everything ending before startTime in place, so a retention window costs work proportional to the evicted range instead of the complete history.

    interface ColdDetectionFrameStorePruneOptions {
        datasetId: string;
        startTime: number;
    }
    Index
    datasetId: string
    startTime: number

    Inclusive media-time floor to retain. Frames ending before it are removed.