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

    Interface RoomReaction

    Represents a room-level reaction.

    interface RoomReaction {
        clientId: string;
        createdAt: Date;
        headers: RoomReactionHeaders;
        isSelf: boolean;
        metadata: RoomReactionMetadata;
        name: string;
    }
    Index

    Properties

    clientId: string

    The clientId of the user who sent the reaction.

    createdAt: Date

    The timestamp at which the reaction was sent.

    Headers of the reaction. If no headers were set this is an empty object.

    isSelf: boolean

    Whether the reaction was sent by the current user.

    Metadata of the reaction. If no metadata was set this is an empty object.

    name: string

    The name of the reaction, for example "like" or "love".