[go: up one dir, main page]

matrix-js-sdk
    Preparing search index...

    Interface RoomMessageTextEventContent

    Content format of timeline events with type m.room.message and msgtype m.text, m.emote, or m.notice

    interface RoomMessageTextEventContent {
        body: string;
        format?: "org.matrix.custom.html";
        formatted_body?: string;
        "m.mentions"?: { room?: boolean; user_ids?: string[] };
        msgtype: Text | Emote | Notice;
    }

    Hierarchy (View Summary)

    Index

    Properties

    body: string
    format?: "org.matrix.custom.html"
    formatted_body?: string
    "m.mentions"?: { room?: boolean; user_ids?: string[] }
    msgtype: Text | Emote | Notice