UNPKG

@team-supercharge/nest-amqp

Version:
15 lines (14 loc) 445 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SendState = void 0; var SendState; (function (SendState) { /** * Message was sent successfully */ SendState[SendState["Success"] = 0] = "Success"; /** * Message failed to send, Broker did not accept the message */ SendState[SendState["Failed"] = 1] = "Failed"; })(SendState = exports.SendState || (exports.SendState = {}));