interface InputComponentType {
    new InputComponentTypenew (props: InputProps, context?: any): Component<InputProps, any, any>;
    childContextTypes?: ValidationMap<any>;
    Color: InputColorPickerComponentType;
    contextType?: Context<any>;
    contextTypes?: ValidationMap<any>;
    defaultProps?: Partial<InputProps>;
    displayName?: string;
    getDerivedStateFromError?: GetDerivedStateFromError<InputProps, any>;
    getDerivedStateFromProps?: GetDerivedStateFromProps<InputProps, any>;
    Mask: InputMaskComponentType;
    Number: InputNumberComponentType;
    Password: InputPasswordComponentType;
    propTypes?: WeakValidationMap<InputProps>;
    TextArea: TextAreaComponentType;
    Time: InputTimeComponentType;
}

Hierarchy (view full)

Constructors

Properties

childContextTypes?: ValidationMap<any>
contextType?: Context<any>
contextTypes?: ValidationMap<any>
defaultProps?: Partial<InputProps>
displayName?: string
getDerivedStateFromError?: GetDerivedStateFromError<InputProps, any>
getDerivedStateFromProps?: GetDerivedStateFromProps<InputProps, any>