BroadcastSession
BroadcastSession:
object
Defined in: packages/core/src/types.ts:126
Companion object for the BroadcastSession type. Provides lightweight structural type guard.
Type Declaration
Section titled “Type Declaration”
readonlyis: (value) =>value is BroadcastSession
Structural type guard for BroadcastSession.
Parameters
Section titled “Parameters”unknown
the value to check
Returns
Section titled “Returns”value is BroadcastSession
true if value has the BroadcastSession shape
Example
Section titled “Example”if (BroadcastSession.is(value)) { ... }