コンテンツにスキップ

Clip

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

Clip: object

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

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

readonly is: (value) => value is Clip

Structural type guard for Clip.

unknown

the value to check

value is Clip

true if value has the Clip shape (type === “clip”)

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