Interface IProps

    Props

    interface IProps {
        additionalKeywords?: IModelVariable[];
        dimension?: number;
        initialValue: string;
        onChange: ((event) => void);
        onUnitChange?: ((value) => void);
        unit?: IUnit;
        units?: IUnit[];
    }

    Properties

    additionalKeywords?: IModelVariable[]
    dimension?: number
    initialValue: string
    onChange: ((event) => void)

    Type declaration

      • (event): void
      • Parameters

        • event: ChangeEvent<HTMLInputElement>

        Returns void

    onUnitChange?: ((value) => void)

    Type declaration

      • (value): void
      • Parameters

        Returns void

    unit?: IUnit
    units?: IUnit[]

    Generated using TypeDoc and TypeDoc Airthium Plugin