UNPKG

matrix-react-sdk

Version:
15 lines (14 loc) 548 B
import { IDestroyable } from "../../utils/IDestroyable"; import { Room } from "matrix-js-sdk/src/models/room"; import { NotificationState } from "./NotificationState"; export declare class RoomNotificationState extends NotificationState implements IDestroyable { readonly room: Room; constructor(room: Room); private get roomIsInvite(); destroy(): void; private handleReadReceipt; private handleMembershipUpdate; private handleRoomEventUpdate; private handleAccountDataUpdate; private updateNotificationState; }