Props

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

Properties

additionalKeywords?: IModelVariable[]
dimension?: number
initialValue: string
onChange: (event: ChangeEvent<HTMLInputElement>) => void
onUnitChange?: (value: IUnit) => void
unit?: IUnit
units?: IUnit[]