InferQueueEnqueueError<C>Enqueue error channel for a queue configuration (never when no itemSchema).
models
Source src/internal/queueHyperlink.ts:12391 lines
export type type InferQueueEnqueueError<C> =
C extends QueueHyperlinkConfigWithItemSchema<
infer _T,
infer _E,
infer _R,
infer _A
>
? QueueEnqueueErrors
: never
Enqueue error channel for a queue configuration (never when no itemSchema).
InferQueueEnqueueError<function (type parameter) C in type InferQueueEnqueueError<C>C> = type EnqueueErrOf<C> =
C extends QueueHyperlinkConfigWithItemSchema<
infer _T,
infer _E,
infer _R,
infer _A
>
? QueueEnqueueErrors
: never
EnqueueErrOf<function (type parameter) C in type InferQueueEnqueueError<C>C>;