keep-vue
Version:
Keep Vue is an open-source component library built on top of Vue3 and Tailwind CSS. It offers a collection of pre-designed UI components and styles that you can easily integrate into your web applications.
12 lines (11 loc) • 711 B
TypeScript
import type { TextareaHTMLAttributes } from "vue";
import type { ClassProps } from "../../utils/interface";
export interface TextAreaProps extends /* @vue-ignore*/ TextareaHTMLAttributes {
modelValue?: string;
}
declare const _default: import("vue").DefineComponent<ClassProps & TextAreaProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
"update:modelValue": (payload: string) => any;
}, string, import("vue").PublicProps, Readonly<ClassProps & TextAreaProps> & Readonly<{
"onUpdate:modelValue"?: ((payload: string) => any) | undefined;
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
export default _default;