UNPKG

rmc-input-number

Version:

input-number ui component for react(web & react-native)

15 lines (14 loc) 384 B
/// <reference types="react" /> import { Component } from 'react'; export interface PropsType { prefixCls: string; disabled?: boolean; onTouchStart: (e: any) => void; onTouchEnd: (e: any) => void; role?: string; className?: string; unselectable?: boolean; } export default class InputHandler extends Component<PropsType, {}> { render(): JSX.Element; }