コンテンツにスキップ

Channel

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

Channel: object

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

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

readonly is: (value) => value is Channel

Structural type guard for Channel.

unknown

the value to check

value is Channel

true if value has the Channel shape

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