UNPKG

antd-mobile

Version:

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

28 lines (27 loc) 856 B
/// <reference types="react" /> import React from 'react'; declare class NumberInput extends React.Component<any, any> { static defaultProps: { onChange: () => void; onFocus: () => void; onBlur: () => void; placeholder: string; value: string; disabled: boolean; editable: boolean; prefixCls: string; keyboardPrefixCls: string; }; debounceFocusTimeout: any; constructor(props: any); componentWillReceiveProps(nextProps: any): void; componentDidMount(): void; componentWillUnmount(): void; _blurEventListener: (ev: any) => void; onInputBlur: (value: any) => void; onInputFocus: (value: any) => void; onKeyboardClick: (KeyboardItemValue: any) => void; onFakeInputClick: () => void; render(): JSX.Element; } export default NumberInput;