A RunCoords with data associated with it.

interface Run<T> {
    data?: T;
    max: number;
    min: number;
}

Type Parameters

  • T

Hierarchy (view full)

Properties

Properties

data?: T
max: number
min: number