Interface IProps

    Props

    interface IProps {
        additionalKeywords?: IModelVariable[];
        className?: string;
        defaultChecked?: boolean;
        defaultValue?: string | number;
        dimension?: number;
        label?: string;
        noLarge?: boolean;
        onCheckedChange?: ((value: boolean) => void);
        onUnitChange?: ((value: IUnit) => void);
        onValueChange: ((value: string) => void);
        unit?: IUnit;
        units?: IUnit[];
    }

    Properties

    additionalKeywords?: IModelVariable[]
    className?: string
    defaultChecked?: boolean
    defaultValue?: string | number
    dimension?: number
    label?: string
    noLarge?: boolean
    onCheckedChange?: ((value: boolean) => void)
    onUnitChange?: ((value: IUnit) => void)
    onValueChange: ((value: string) => void)
    unit?: IUnit
    units?: IUnit[]

    Generated using TypeDoc and TypeDoc Airthium Plugin