UNPKG

@chatscope/use-chat

Version:

React hook for state management in chat applications

8 lines (7 loc) 288 B
import { ChatEventType } from "../enums"; import { ChatEvent } from "./ChatEvent"; export declare class UserConnectedEvent implements ChatEvent<ChatEventType.UserConnected> { readonly type = ChatEventType.UserConnected; readonly userId: string; constructor(userId: string); }