Interface SASInputBindings<T>

interface SASInputBindings<T> {
    autocomplete?: string;
    id?: string;
    inputBlur?: ((event: FocusEvent) => void);
    inputFocus?: ((event: FocusEvent) => void);
    isDisabled?: boolean;
    model?: T;
    modelChanged?: ((modelValue: T) => void);
    placeholder?: string;
    readOnly?: boolean;
}

Type Parameters

  • T = any

Hierarchy (view full)

Properties

autocomplete?: string
id?: string
inputBlur?: ((event: FocusEvent) => void)
inputFocus?: ((event: FocusEvent) => void)
isDisabled?: boolean
model?: T
modelChanged?: ((modelValue: T) => void)
placeholder?: string
readOnly?: boolean