Interface IRoom

Hierarchy

  • IRoom

Properties

_accountData: {
    [eventType: string]: IMinimalEvent;
}

Type declaration

_currentState: {
    [eventType: string]: {
        [stateKey: string]: IStateEvent;
    };
}

Type declaration

_readReceipts: {
    [userId: string]: {
        data: IMinimalEvent;
        eventId: string;
        type: ReceiptType;
    };
}

Type declaration

_summary: Partial<IRoomSummary>
_threadReadReceipts: {
    [threadId: string]: {
        [userId: string]: {
            data: IMinimalEvent;
            eventId: string;
            type: ReceiptType;
        };
    };
}

Type declaration

_timeline: {
    event: IRoomEvent | IStateEvent;
    token: null | string;
}[]
_unreadNotifications: Partial<UnreadNotificationCounts>
_unreadThreadNotifications?: Record<string, Partial<UnreadNotificationCounts>>

Generated using TypeDoc