Interface TypingEvent

Represents a typing event.

interface TypingEvent {
    get currentlyTyping(): Set<string>;
}

Accessors

Accessors

  • get currentlyTyping(): Set<string>
  • Get a set of clientIds that are currently typing.

    Returns Set<string>