Interface BoxedValue<T>

interface BoxedValue<T> {
    disabled?: boolean;
    value: T;
}

Type Parameters

  • T

Properties

Properties

disabled?: boolean
value: T