UNPKG

@variantjs/vue

Version:

Vue VariantJS: Fully configurable Vue 3 components styled with TailwindCSS

7 lines (6 loc) 302 B
import { Data, WithVariantProps } from '@variantjs/core'; import { InputHTMLAttributes } from 'vue'; export declare type TTextareaValue = string | number | string[] | undefined; export declare type TTextareaOptions = WithVariantProps<{ modelValue?: TTextareaValue; } & InputHTMLAttributes & Data>;