Type Alias QueueDefaults
QueueDefaults: Pick<
EnqueueOptions,
| "maxAttempts"
| "maxStalledCount"
| "priority"
| "tags"
| "removeOnComplete"
| "removeOnFail",
>
EnqueueOptions,
| "maxAttempts"
| "maxStalledCount"
| "priority"
| "tags"
| "removeOnComplete"
| "removeOnFail",
>
Per-enqueue defaults applied by a QueueHandle unless overridden by the caller. Every field is optional — the queue handle merges these on top of the eddyq defaults, then the caller's
EnqueueOptionswins.