Can check if rooms are muted

This commit is contained in:
2025-12-01 09:12:58 +01:00
parent 7acb0cbafa
commit 57797e933a
3 changed files with 39 additions and 11 deletions

View File

@@ -11,6 +11,7 @@ export interface Room {
is_space?: boolean;
parents: string[];
number_unread_messages: number;
notifications: "AllMessages" | "MentionsAndKeywordsOnly" | "Mute";
latest_event?: MatrixEvent;
}