The interface for arguments for bindable elements.

interface IBindableArgs {
    renderChanges?: boolean;
    value?: any;
    values?: any[];
}

Hierarchy (View Summary)

Properties

renderChanges?: boolean

If true each input will flash on changes.

value?: any

Sets the value of the Element.

values?: any[]

Sets multiple values to the Element. It is up to the Element to determine how to display them.