Interface ReceiveMessageOptions

interface ReceiveMessageOptions {
    message: Message;
    messages: Message[];
    participantsAll: Participant[];
    member: string;
    eventType: EventType;
    islevel: string;
    coHost: string;
    updateMessages: ((messages: Message[]) => void);
    updateShowMessagesBadge: ((showBadge: boolean) => void);
}

Properties

message: Message
messages: Message[]
participantsAll: Participant[]
member: string
eventType: EventType
islevel: string
coHost: string
updateMessages: ((messages: Message[]) => void)
updateShowMessagesBadge: ((showBadge: boolean) => void)