interface IListItemProps {
    _onEdit: (sensor: IModelSensor & { index: number }) => void;
    index: number;
    sensor: IModelSensor;
    simulation: Simulation;
    swr: Swr;
}

Properties

_onEdit: (sensor: IModelSensor & { index: number }) => void
index: number
sensor: IModelSensor
simulation: Simulation
swr: Swr