UNPKG

@likeminds.community/chat-js-beta

Version:

LikeMinds Javascript SDK for chat APIs

16 lines (15 loc) 681 B
import { AttachmentMeta } from '../interfaces/Attachment'; import { Chatroom } from '../interfaces/Chatroom'; import { Community } from '../interfaces/Community'; import { Conversation } from '../interfaces/Conversation'; import { Member } from '../interfaces/Member'; import { Widget } from '../interfaces/Widgets'; export interface SyncChatroomResponse { cardAttachmentsMeta: Record<string, AttachmentMeta[]>; chatroomsData: Chatroom[]; communityMeta: Record<string, Community>; convAttachmentsMeta: Record<string, AttachmentMeta[]>; conversationMeta: Record<string, Conversation>; userMeta: Record<string, Member>; widgets: Record<string, Widget>; }