UNPKG

@matechat/core

Version:

前端智能化场景解决方案UI库,轻松构建你的AI应用。

13 lines (12 loc) 458 B
import { type Ref } from 'vue'; import type { TextareaAutoSize } from '../input-types'; interface UseTextareaAutosizeOptions { textareaRef: Ref<HTMLTextAreaElement | null>; autosize: TextareaAutoSize; } interface UseTextareaAutosizeReturn { textareaStyle: Ref<Record<string, string>>; updateTextareaStyle: () => void; } export declare function useMcTextareaAutosize(options: UseTextareaAutosizeOptions): UseTextareaAutosizeReturn; export {};