(message: Body, options?: QueueSendOptions)
| 1529 | type QueueContentType = "text" | "bytes" | "json" | "v8"; |
| 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 { |
nothing calls this directly
no outgoing calls
no test coverage detected