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