UNPKG

jamis

Version:

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

14 lines (13 loc) 435 B
import React from 'react'; import type { RendererProps } from 'jamis-core'; import type { IConversationItem } from './types'; interface ChatAdviceProps { disabled?: boolean; title: string; advices: string[]; activeConversation?: IConversationItem; render: RendererProps['render']; onSend: (query: string, index: number) => void; } export declare const ChatAdviceComponent: React.FC<ChatAdviceProps>; export {};