(message: Body, options?: QueueSendOptions)
| 2170 | type QueueContentType = "text" | "bytes" | "json" | "v8"; |
| 2171 | interface Queue<Body = unknown> { |
| 2172 | send(message: Body, options?: QueueSendOptions): Promise<void>; |
| 2173 | sendBatch( |
| 2174 | messages: Iterable<MessageSendRequest<Body>>, |
| 2175 | options?: QueueSendBatchOptions, |
no outgoing calls