@up-group-ui/react-controls
Version:
Up shared react controls
13 lines (12 loc) • 505 B
TypeScript
import React from 'react';
import { BaseControlState } from '../_Common/BaseControl/BaseControl';
import { UpPhoneProps } from './types';
export default class UpPhone extends React.Component<UpPhoneProps, BaseControlState<string>> {
static defaultProps: UpPhoneProps;
constructor(p: any, c: any);
phoneHandleChangeEvent: (event: any, value: any, error: any) => void;
get isControlled(): boolean;
get currentValue(): string;
get currentError(): string;
render(): JSX.Element;
}