Spaces:
Runtime error
Runtime error
| ; | |
| // automatically generated by the FlatBuffers compiler, do not modify | |
| Object.defineProperty(exports, "__esModule", { value: true }); | |
| exports.Binary = void 0; | |
| const tslib_1 = require("tslib"); | |
| const flatbuffers = tslib_1.__importStar(require("flatbuffers")); | |
| /** | |
| * Opaque binary data | |
| */ | |
| class Binary { | |
| constructor() { | |
| this.bb = null; | |
| this.bb_pos = 0; | |
| } | |
| __init(i, bb) { | |
| this.bb_pos = i; | |
| this.bb = bb; | |
| return this; | |
| } | |
| static getRootAsBinary(bb, obj) { | |
| return (obj || new Binary()).__init(bb.readInt32(bb.position()) + bb.position(), bb); | |
| } | |
| static getSizePrefixedRootAsBinary(bb, obj) { | |
| bb.setPosition(bb.position() + flatbuffers.SIZE_PREFIX_LENGTH); | |
| return (obj || new Binary()).__init(bb.readInt32(bb.position()) + bb.position(), bb); | |
| } | |
| static startBinary(builder) { | |
| builder.startObject(0); | |
| } | |
| static endBinary(builder) { | |
| const offset = builder.endObject(); | |
| return offset; | |
| } | |
| static createBinary(builder) { | |
| Binary.startBinary(builder); | |
| return Binary.endBinary(builder); | |
| } | |
| } | |
| exports.Binary = Binary; | |
| //# sourceMappingURL=binary.js.map | |