UNPKG

@tencentcloud/chat-uikit-vue

Version:

Build In-App Chat & Audio/Video Call & Live Streaming in minutes with UIKit components for Vue.

16 lines (11 loc) 350 B
import { IMessageModel } from '@tencentcloud/chat-uikit-engine'; export function isBotMessage(message: IMessageModel): boolean { if (!message || !message.ID || !message.from) { return false; } if (message.from.startsWith('@RBT#') && !message.to.startsWith('@RBT#')) { return true; } return false; } export * from './index.vue';