Skip to main content

Type Alias: SessionJoinOrStart

type SessionJoinOrStart = {
sceneId: UUID;
autoJoinExisting: boolean;
isTransient: boolean;
};

Defined in: livelink.react/sources/components/core/Livelink.tsx:53

Represents the mode for either joining or starting a session.

Type declaration

NameTypeDescription
sceneIdUUIDThe UUID of the scene to connect to or start a session on.
autoJoinExisting?booleanWhether to automatically join any existing session.
isTransient?booleanIf a new session is started, specifies whether it is transient (non-persistent). If a session is joined, this property is ignored.