UNPKG

@try-at-software/input-elements

Version:

A package providing different input elements that are extensible and easily configurable for your custom needs.

11 lines (10 loc) 596 B
import * as React from 'react'; import { IBaseInputElementDynamicProps } from '../IBaseInputElementDynamicProps'; import { IDynamicProps } from '../IDynamicProps'; import { IOperativeProps } from '../IOperativeProps'; import { ISingleValueInputElementProps } from '../ISingleValueInputElementProps'; import { ITextInputProps } from './ITextInputProps'; export declare class TextInput extends React.Component<ISingleValueInputElementProps<string> & IOperativeProps<ITextInputProps> & IDynamicProps<IBaseInputElementDynamicProps>> { render(): JSX.Element; private handleChange; }