1goog.module('protobuf.binary.WireType'); 2 3/** 4 * Wire-format type codes, taken from proto2/public/wire_format_lite.h. 5 * @enum {number} 6 */ 7const WireType = { 8 VARINT: 0, 9 FIXED64: 1, 10 DELIMITED: 2, 11 START_GROUP: 3, 12 END_GROUP: 4, 13 FIXED32: 5, 14 INVALID: 6 15}; 16 17exports = WireType; 18