コンテンツにスキップ

BroadcastSession

このコンテンツはまだ日本語訳がありません。

BroadcastSession: object

Defined in: packages/core/src/types.ts:126

Companion object for the BroadcastSession type. Provides lightweight structural type guard.

readonly is: (value) => value is BroadcastSession

Structural type guard for BroadcastSession.

unknown

the value to check

value is BroadcastSession

true if value has the BroadcastSession shape

if (BroadcastSession.is(value)) { ... }