@ably/chat - v0.10.0
    Preparing search index...

    Interface TypingSetEvent

    Represents a change in the state of current typers.

    interface TypingSetEvent {
        change: { clientId: string; type: TypingEventType };
        currentlyTyping: Set<string>;
        type: SetChanged;
    }
    Index

    Properties

    change: { clientId: string; type: TypingEventType }

    Represents the change that resulted in the new set of typers.

    Type declaration

    • clientId: string

      The client ID of the user who stopped/started typing.

    • type: TypingEventType

      Type of the change.

    currentlyTyping: Set<string>

    The set of clientIds that are currently typing.

    The type of the event.