sendTypingIndicator()
Broadcast a typing indicator
caution
join() must be called before calling this method
Broadcasts that this participant is currently typing. Other participants receive the chatTyping event.
JavaScript
chatInput.addEventListener("input", () => {
meeting.sendTypingIndicator();
});
It is safe to call this on every keystroke: the server throttles it to at most one broadcast per participant every 2 seconds. If the meeting has not been joined the call is a no-op.