antd-mobile
Version:
基于 React 的移动设计规范实现
16 lines (15 loc) • 498 B
TypeScript
/// <reference types="react" />
import React from 'react';
export interface InputProps extends React.ChangeTargetHTMLProps<HTMLInputElement> {
focused?: boolean;
}
declare class Input extends React.Component<InputProps, any> {
constructor(props: any);
componentWillReceiveProps(nextProps: any): void;
componentDidMount(): void;
componentDidUpdate(): void;
onInputBlur: (e: any) => void;
onInputFocus: (e: any) => void;
render(): JSX.Element;
}
export default Input;