UNPKG

antd-mobile

Version:

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

27 lines (26 loc) 739 B
import * as React from 'react'; import TextAreaItemProps from './TextAreaItemPropsType'; export default class TextAreaItem extends React.Component<TextAreaItemProps, any> { static defaultProps: { onChange(): void; onFocus(): void; onBlur(): void; onErrorClick(): void; clear: boolean; error: boolean; editable: boolean; rows: number; value: string; placeholder: string; count: number; keyboardType: string; autoHeight: boolean; last: boolean; }; constructor(props: any); onChange: (event: any) => void; onFocus: () => void; onBlur: () => void; onErrorClick: () => void; render(): JSX.Element; }