comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
22 lines (20 loc) • 737 B
TypeScript
import { ExtractPropTypes } from 'vue';
export declare const textareaProps: {
readonly modelValue: StringConstructor;
readonly placeholder: StringConstructor;
readonly maxlength: NumberConstructor;
readonly autoFocus: {
readonly type: BooleanConstructor;
readonly default: false;
};
readonly disabled: BooleanConstructor;
readonly rows: NumberConstructor;
};
export type TextareaProps = ExtractPropTypes<typeof textareaProps>;
export declare const textareaEmits: {
"update:modelValue": (value: string) => boolean;
change: (value: string) => boolean;
blur: (evt: FocusEvent) => boolean;
focus: (evt: FocusEvent) => boolean;
};
export type TextareaEmits = typeof textareaEmits;