(message: Body, options?: QueueSendOptions)
| 1863 | type QueueContentType = "text" | "bytes" | "json" | "v8"; |
| 1864 | interface Queue<Body = unknown> { |
| 1865 | send(message: Body, options?: QueueSendOptions): Promise<void>; |
| 1866 | sendBatch(messages: Iterable<MessageSendRequest<Body>>, options?: QueueSendBatchOptions): Promise<void>; |
| 1867 | } |
| 1868 | interface QueueSendOptions { |
no outgoing calls