1 | ;
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 | /**
|
4 | * Convenience class to use as a binary carrier.
|
5 | *
|
6 | * Any valid Object with a field named `buffer` may be used as a binary carrier;
|
7 | * this class is only one such type of object that can be used.
|
8 | */
|
9 | var BinaryCarrier = /** @class */ (function () {
|
10 | function BinaryCarrier(buffer) {
|
11 | this.buffer = buffer;
|
12 | }
|
13 | return BinaryCarrier;
|
14 | }());
|
15 | exports.default = BinaryCarrier;
|
16 | //# sourceMappingURL=binary_carrier.js.map |
\ | No newline at end of file |