antd-mini
Version:
antd-mini 是支付宝小程序 UI 组件库,遵循 Ant Design 规范。
6 lines (5 loc) • 299 B
TypeScript
import { FormItemProps } from '../FormItem/props';
import { TextareaProps } from '../../Input/Textarea/props';
export interface FormTextareaProps extends Omit<TextareaProps, 'value' | 'defaultValue' | 'name'>, FormItemProps {
}
export declare const FormTextareaDefaultProps: Partial<TextareaProps>;