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