UNPKG

antd-mobile

Version:

基于 React 的移动设计规范实现

15 lines (14 loc) 448 B
/// <reference types="react" /> import React from 'react'; declare class Input extends React.Component<any, any> { scrollIntoViewTimeout: any; constructor(props: any); componentWillReceiveProps(nextProps: any): void; componentDidMount(): void; componentWillUnmount(): void; componentDidUpdate(): void; onInputBlur: (e: any) => void; onInputFocus: (e: any) => void; render(): JSX.Element; } export default Input;