A Cloudflare Queues producer binding.
The consumer half is IQueueMessageBatch, dispatched by the
handler createQueueHandler builds for the Worker's queue export.
send(body: unknown,options?: QueueSendOptions): Promise<void>
Enqueues one message, at most 128 KB.
sendBatch(messages: readonly { readonly body: unknown; readonly contentType?: string; }[]): Promise<void>
Enqueues up to 100 messages, at most 256 KB in total.