Declare a simple binding
https://www.rabbitmq.com/client-libraries/amqp-client-libraries#bindings
const binding = await management.bind({ sourceExchange: "my-exchange", destinationQueue: "my-queue", key: "foo" })
Alternatively, since bindings can be done between all kinds of objects, consider this form:
const binding = await management.bind({source: {type: "queue" | "exchange" value: name}, destination: /*...*/ })