@likeminds.community/chat-js-beta
Version:
LikeMinds Javascript SDK for chat APIs
13 lines (12 loc) • 438 B
TypeScript
import { Chatroom } from '../interfaces/Chatroom';
import { ChatroomAction } from '../interfaces/ChatroomActions';
import { Community } from '../interfaces/Community';
export interface GetChatroomResponse {
canAccessSecretChatroom: boolean | undefined;
chatroom: Chatroom;
chatroomActions: ChatroomAction[];
community: Community;
lastConversationId: number;
participantCount: number;
unreadMessages: number;
}