interface Queue<Body> {     send(message, 
options?): Promise<void>;     sendBatch(messages, 
options?): Promise<void>; }   Methods
send
- send(message, options?): Promise<void>
 Returns Promise<void>
sendBatch
- sendBatch(messages, options?): Promise<void>
 Returns Promise<void>