Add replies support
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-12-03 19:20:17 +01:00
parent 854b474970
commit 5088699c15
3 changed files with 34 additions and 3 deletions

View File

@@ -15,8 +15,11 @@ export interface MatrixRoomMessage {
body: string;
msgtype: MessageType;
"m.relates_to"?: {
event_id: string;
rel_type: "m.replace" | string;
event_id?: string;
rel_type?: "m.replace" | string;
"m.in_reply_to"?: {
event_id?: string;
};
};
url?: string;
file?: {