UNPKG

jamis

Version:

一种支持通过JSON配置方式生成页面的组件库

13 lines (12 loc) 373 B
import React from 'react'; interface ChatTextareaProps { initValue: string; onSend: (query: string) => void; disabled?: boolean; placeholder?: string; isFetching: boolean; forceStop: () => void; renderToolbar: (sendButton: JSX.Element) => JSX.Element | null; } export declare const ChatTextareaComponent: React.FC<ChatTextareaProps>; export {};