@vchatcloud/react-ui-kit
Version:
VChatCloud UI Kit for react integration
11 lines (10 loc) • 547 B
TypeScript
interface ChattingFieldProps {
readonly visibleScrollDown: boolean;
readonly onScrollDown: () => void;
readonly onShowEmoticon?: () => void;
readonly onSendMessage: (message: string) => void;
readonly onSendEmoticon: (emoticonUrl: string) => void;
readonly onSendFile: (file: File) => Promise<void>;
}
declare const ChattingField: ({ visibleScrollDown, onScrollDown, onShowEmoticon, onSendMessage, onSendEmoticon, onSendFile, }: ChattingFieldProps) => import("react/jsx-runtime").JSX.Element;
export default ChattingField;