(messages: Iterable<MessageSendRequest<Body>>, options?: QueueSendBatchOptions)
| 1530 | interface Queue<Body = unknown> { |
| 1531 | send(message: Body, options?: QueueSendOptions): Promise<void>; |
| 1532 | sendBatch(messages: Iterable<MessageSendRequest<Body>>, options?: QueueSendBatchOptions): Promise<void>; |
| 1533 | } |
| 1534 | interface QueueSendOptions { |
| 1535 | contentType?: QueueContentType; |
nothing calls this directly
no outgoing calls
no test coverage detected