@stomp/stompjs
Version:
STOMP client for Javascript and Typescript
18 lines • 581 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
/**
* STOMP headers. Many functions calls will accept headers as parameters.
* The headers sent by Broker will be available as [IFrame#headers]{@link IFrame#headers}.
*
* `key` and `value` must be valid strings.
* In addition, `key` must not contain `CR`, `LF`, or `:`.
*
* Part of `@stomp/stompjs`.
*/
var StompHeaders = /** @class */ (function () {
function StompHeaders() {
}
return StompHeaders;
}());
exports.StompHeaders = StompHeaders;
//# sourceMappingURL=stomp-headers.js.map
;