| 12345678910111213141516171819202122232425 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = void 0;
- var _readableStream = require("readable-stream");
- class Message extends _readableStream.PassThrough {
- constructor({
- type,
- resetConnection = false
- }) {
- super();
- this.type = type;
- this.resetConnection = resetConnection;
- this.ignore = false;
- }
- }
- var _default = Message;
- exports.default = _default;
- module.exports = Message;
|