Interface IJoinRoomOpts

interface IJoinRoomOpts {
    inviteSignUrl?: string;
    syncRoom?: boolean;
    viaServers?: string[];
}

Properties

inviteSignUrl?: string

If the caller has a keypair 3pid invite, the signing URL is passed in this parameter.

syncRoom?: boolean

True to do a room initial sync on the resulting room. If false, the returned Room object will have no current state. Default: true.

viaServers?: string[]

The server names to try and join through in addition to those that are automatically chosen.