Interface InlineEditableProps

interface InlineEditableProps {
    value: string;
    className?: string;
    placeholder?: string;
    editable?: boolean;
    required?: boolean;
    autoFocus?: boolean;
    onChange?: (any: any) => void;
    onEnter?: (any: any) => void;
    onEsc?: (any: any) => void;
    onFocus?: (any: any) => void;
    onBlur?: (any: any) => void;
}

Properties

value: string
className?: string
placeholder?: string
editable?: boolean
required?: boolean
autoFocus?: boolean
onChange?: (any: any) => void
onEnter?: (any: any) => void
onEsc?: (any: any) => void
onFocus?: (any: any) => void
onBlur?: (any: any) => void
MMNEPVFCICPMFPCPTTAAATR