interface IInfo {
    aliases?: string[];
    desc?: string;
    numMembers?: number;
    timestamp?: number;
    title: string;
}

Properties

aliases?: string[]

The list of aliases for this room.

desc?: string

The description of the room (e.g. m.room.topic)

numMembers?: number

The number of joined users.

timestamp?: number

The timestamp for this room.

title: string

The title of the room (e.g. m.room.name)