@codedevin/dify-chat
Version:
A beautiful and configurable chatbot widget for Dify integration with multiple display modes
11 lines (10 loc) • 362 B
TypeScript
import { default as React } from 'react';
import { ChatInputProps } from '../types';
interface ExtendedChatInputProps extends ChatInputProps {
status?: "ready" | "submitted" | "streaming";
onStop?: () => void;
autoFocus?: boolean;
}
export declare const ChatInput: React.FC<ExtendedChatInputProps>;
export {};
//# sourceMappingURL=ChatInput.d.ts.map