Interface IListItemProps

    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

    Generated using TypeDoc and TypeDoc Airthium Plugin