tdesign-mobile-vue
Version:
tdesign-mobile-vue
62 lines (61 loc) • 1.65 kB
TypeScript
import { TdTextareaProps } from './type';
import { PropType } from 'vue';
declare const _default: {
allowInputOverMax: BooleanConstructor;
autofocus: BooleanConstructor;
autosize: {
type: PropType<TdTextareaProps['autosize']>;
default: TdTextareaProps['autosize'];
};
bordered: BooleanConstructor;
cursorColor: {
type: StringConstructor;
default: string;
};
disabled: {
type: BooleanConstructor;
default: any;
};
indicator: BooleanConstructor;
label: {
type: PropType<TdTextareaProps['label']>;
};
layout: {
type: PropType<TdTextareaProps['layout']>;
default: TdTextareaProps['layout'];
validator(val: TdTextareaProps['layout']): boolean;
};
maxcharacter: {
type: NumberConstructor;
};
maxlength: {
type: PropType<TdTextareaProps['maxlength']>;
};
name: {
type: StringConstructor;
default: string;
};
placeholder: {
type: StringConstructor;
default: any;
};
readonly: {
type: BooleanConstructor;
default: any;
};
value: {
type: PropType<TdTextareaProps['value']>;
default: TdTextareaProps['value'];
};
modelValue: {
type: PropType<TdTextareaProps['value']>;
default: TdTextareaProps['value'];
};
defaultValue: {
type: PropType<TdTextareaProps['defaultValue']>;
};
onBlur: PropType<TdTextareaProps['onBlur']>;
onChange: PropType<TdTextareaProps['onChange']>;
onFocus: PropType<TdTextareaProps['onFocus']>;
};
export default _default;