Implements IChatInstance
constructor(clientId: string, swarmName: string, onDispose: DisposeFn, callbacks: Partial<IChatInstanceCallbacks>);
clientId: any
swarmName: any
onDispose: any
callbacks: any
_disposeSubject: any
_chatSession: any
_lastActivity: any
checkLastActivity(now: number): Promise<boolean>;
Checks if the chat has been active within the timeout period
beginChat(): Promise<void>;
Begins a chat session
sendMessage(content: string): Promise<string>;
Sends a message in the chat
dispose(): Promise<void>;
Disposes of the chat instance
listenDispose(fn: (clientId: SessionId) => void): () => void;
Adds a listener for dispose events