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

    Interface MessageOptions

    Represents the message options for a chat room.

    interface MessageOptions {
        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 MessagesReactions.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