Interface TypingOptions

Represents the typing options for a chat room.

interface TypingOptions {
    timeoutMs: number;
}

Properties

Properties

timeoutMs: number

The timeout for typing events in milliseconds. If typing.start() is not called for this amount of time, a stop typing event will be fired, resulting in the user being removed from the currently typing set.

5000