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

    Interface MessagesOptions

    Represents the message options for a chat room.

    interface MessagesOptions {
        defaultMessageReactionType?: MessageReactionType;
        rawMessageReactions?: boolean;
    }
    Index

    Properties

    defaultMessageReactionType?: MessageReactionType

    The default message reaction type to use for sending message reactions.

    Any message reaction type can be sent regardless of this setting by specifying the type parameter in the MessageReactions.send method.

    rawMessageReactions?: boolean

    Whether to enable receiving raw individual message reactions from the realtime channel. Set to true if subscribing to raw message reactions.

    Note reaction summaries (aggregates) are always available regardless of this setting.

    false