Type Alias DurablePublishKitState
DurablePublishKitState: { hasValue: boolean; publishCount: bigint; status: "live" | "finished" | "failed"; value: any; valueDurability: DurablePublishKitValueDurability; } Type declaration
hasValue: boolean
publishCount: bigint
status: "live" | "finished" | "failed"
value: any
hasValue indicates the presence of value. It starts off false, and can be reset to false when a durable publish kit is restored and the previous value was not durable, or non-terminal and valueDurablity is 'ignored'.