mobile-more
Version:
基于 antd-mobile v5 扩展移动端 UI 组件
12 lines (11 loc) • 337 B
TypeScript
import React from 'react';
import { TextAreaProps } from 'antd-mobile';
export interface SuperTextAreaProps extends TextAreaProps {
/**
* @description 去除头尾空格。
* @default false
*/
disabledWhiteSpace?: boolean;
}
declare const SuperTextArea: React.FC<SuperTextAreaProps>;
export default SuperTextArea;