UNPKG

@tencentcloud/chat-uikit-vue2

Version:

TUIKit 是基于 IM SDK 实现的一套 UI 组件,其包含会话、聊天、群组、个人资料等功能,基于 TUIKit 组件您可以像搭积木一样快速搭建起自己的业务逻辑。

16 lines (13 loc) 370 B
export interface ITUINotification { showPreviews: boolean; allowNotifications: boolean; notificationTitle: string; notificationIcon: string; } export interface INotificationConstructorParams { showPreviews?: boolean; allowNotifications?: boolean; notificationTitle?: string; notificationIcon?: string; } export type NotificationType = 'chat' | 'call';