Type Alias: SessionOpenMode
type SessionOpenMode = StrictUnion<
| {
sessionId: UUID;
}
| {
sceneId: UUID;
autoJoinExisting: boolean;
isTransient: boolean;
}
>;
Defined in: livelink.react/sources/components/core/Livelink.tsx:85
Represents the union of all possible session open modes.
This type includes:
SessionJoinMode
: For joining an existing session.SessionJoinOrStart
: For joining or starting a session based on the provided context.