UNPKG

@xapp/chat-widget

Version:
12 lines (11 loc) 440 B
import 'rollup-plugin-inject-process-env'; import { FC } from "react"; import { ChatMsgDetail } from "../../store/ChatAction"; import { OpenUrlCallback } from "../../hooks/useOpenUrlCallback"; export interface ChatMarkdownMessageProps { readonly message: ChatMsgDetail; readonly sibling: boolean; readonly time?: string; onOpenUrl: OpenUrlCallback; } export declare const ChatMarkdownMessage: FC<ChatMarkdownMessageProps>;