Interface BoundaryConditionItemProps

    interface BoundaryConditionItemProps {
        _onCheckedChange: ((index: number, checked: boolean) => void);
        _onUnitChange: ((index: number, unit: IUnit) => void);
        _onValueChange: ((index: number, value: string) => void);
        child: IModelBoundaryCondition;
        dimension: undefined | number;
        index: number;
        simulation: Simulation;
        values: {
            checked?: boolean;
            unit?: IUnit;
            value?: string | number;
        }[];
    }

    Properties

    _onCheckedChange: ((index: number, checked: boolean) => void)
    _onUnitChange: ((index: number, unit: IUnit) => void)
    _onValueChange: ((index: number, value: string) => void)
    dimension: undefined | number
    index: number
    simulation: Simulation
    values: {
        checked?: boolean;
        unit?: IUnit;
        value?: string | number;
    }[]

    Generated using TypeDoc and TypeDoc Airthium Plugin