@up-group-ui/react-controls
Version:
Up shared react controls
13 lines (12 loc) • 469 B
TypeScript
/// <reference types="react" />
import { BaseControlComponent } from '../_Common/BaseControl/BaseControl';
import { EventHandler, UpTextProps } from './types';
export default class UpText extends BaseControlComponent<UpTextProps, string> {
static defaultProps: UpTextProps;
constructor(p: any, c: any);
onChange: EventHandler<any, string>;
showError(): any;
showSuccess(): boolean;
getValue(event: any): any;
renderControl(): JSX.Element;
}