Interface RelationEvent

Partial content format of timeline events with rel_type other than m.replace

interface RelationEvent {
    "m.new_content"?: undefined;
    "m.relates_to": {
        event_id: string;
        rel_type: Annotation | Reference | Thread;
    };
}

Properties

"m.new_content"?: undefined
"m.relates_to": { event_id: string; rel_type: Annotation | Reference | Thread }