We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 318f0ac commit 3a6409cCopy full SHA for 3a6409c
lib/channel_model.js
@@ -41,8 +41,6 @@ class ChannelModel extends EventEmitter {
41
}
42
43
44
-module.exports.ChannelModel = ChannelModel;
45
-
46
// Channels
47
48
class Channel extends BaseChannel {
@@ -249,8 +247,6 @@ class Channel extends BaseChannel {
249
247
250
248
251
252
-module.exports.Channel = Channel;
253
254
// There are more options in AMQP than exposed here; RabbitMQ only
255
// implements prefetch based on message count, and only for individual
256
// channels or consumers. RabbitMQ v3.3.0 and after treat prefetch
@@ -300,3 +296,5 @@ class ConfirmChannel extends Channel {
300
296
301
297
302
298
module.exports.ConfirmChannel = ConfirmChannel;
299
+module.exports.Channel = Channel;
+module.exports.ChannelModel = ChannelModel;
0 commit comments