UNPKG

bootstrap-vue-next

Version:

Seamless integration of Vue 3, Bootstrap 5, and TypeScript for modern, type-safe UI development

45 lines (44 loc) 1.97 kB
import { BFormTextareaProps } from '../../types'; type __VLS_Props = Omit<BFormTextareaProps, 'modelValue'>; type __VLS_ModelProps = { modelValue?: Exclude<BFormTextareaProps['modelValue'], undefined>; 'modelModifiers'?: Partial<Record<'trim' | 'lazy' | 'number', true>>; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, { blur: () => void; element: Readonly<import('vue').ShallowRef<HTMLTextAreaElement | null, HTMLTextAreaElement | null>>; flushDebounce: (evt: Readonly<FocusEvent>) => void; focus: () => void; }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (value: import('../../types/CommonTypes').Numberish | null) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: ((value: import('../../types/CommonTypes').Numberish | null) => any) | undefined; }>, { disabled: boolean; ariaInvalid: import('../..').AriaInvalid; autocomplete: string; autofocus: boolean; form: string; formatter: (val: string, evt: Event) => string; id: string; lazyFormatter: boolean; list: string; modelValue: Exclude<BFormTextareaProps["modelValue"], undefined>; name: string; placeholder: string; plaintext: boolean; readonly: boolean; required: boolean; size: import('../..').Size; state: import('../..').ValidationState; noResize: boolean; rows: import('../../types/CommonTypes').Numberish; wrap: string; noAutoShrink: boolean; maxRows: import('../../types/CommonTypes').Numberish; debounce: import('../../types/CommonTypes').Numberish; debounceMaxWait: import('../../types/CommonTypes').Numberish; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;