capnp-ts
Version:
Strongly typed Cap'n Proto implementation for the browser and Node.js using TypeScript
14 lines • 496 B
JavaScript
;
/**
* @author jdiaz5513
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.PointerType = void 0;
var PointerType;
(function (PointerType) {
PointerType[PointerType["STRUCT"] = 0] = "STRUCT";
PointerType[PointerType["LIST"] = 1] = "LIST";
PointerType[PointerType["FAR"] = 2] = "FAR";
PointerType[PointerType["OTHER"] = 3] = "OTHER";
})(PointerType = exports.PointerType || (exports.PointerType = {}));
//# sourceMappingURL=pointer-type.js.map