UNPKG

antd-mobile

Version:

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

38 lines (37 loc) 859 B
/// <reference types="react" /> import React from 'react'; interface TextAreaItemProps { style?: any; /** web only */ prefixCls?: string; /** web only */ prefixListCls?: string; /** web only */ className?: string; title?: React.ReactNode; maxLength?: number; /** web only */ name?: string; value?: string; defaultValue?: string; placeholder?: string; clear?: boolean; rows?: number; count?: number; onChange?: Function; onBlur?: Function; onFocus?: Function; error?: boolean; onErrorClick?: () => void; autoHeight?: boolean; editable?: boolean; disabled?: boolean; labelNumber?: number; autoFocus?: boolean; focused?: boolean; /** rn only */ keyboardType?: string; last?: boolean; styles?: any; } export default TextAreaItemProps;