1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-25 05:23:13 +03:00

Use stable value for fallback (#2239)

This commit is contained in:
Germain
2022-03-15 13:52:33 +00:00
committed by GitHub
parent c2fdb4478d
commit 510833b2f2

View File

@@ -102,12 +102,11 @@ export interface IAggregatedRelation {
} }
export interface IEventRelation { export interface IEventRelation {
rel_type: RelationType | string; rel_type?: RelationType | string;
event_id: string; event_id?: string;
is_falling_back?: boolean;
"m.in_reply_to"?: { "m.in_reply_to"?: {
event_id: string; event_id: string;
is_falling_back?: boolean;
"io.element.show_reply"?: boolean; // unstable variant of `is_falling_back` - MSC3440
}; };
key?: string; key?: string;
} }