Interface BoundaryConditionItemProps

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

    Properties

    _onCheckedChange: ((index, checked) => void)

    Type declaration

      • (index, checked): void
      • Parameters

        • index: number
        • checked: boolean

        Returns void

    _onUnitChange: ((index, unit) => void)

    Type declaration

      • (index, unit): void
      • Parameters

        Returns void

    _onValueChange: ((index, value) => void)

    Type declaration

      • (index, value): void
      • Parameters

        • index: number
        • value: string

        Returns void

    dimension: undefined | number
    index: number
    simulation: Simulation
    values: {
        checked?: boolean;
        unit?: IUnit;
        value?: string | number;
    }[]

    Type declaration

    • Optional checked?: boolean
    • Optional unit?: IUnit
    • Optional value?: string | number

    Generated using TypeDoc and TypeDoc Airthium Plugin