wire_format.js 238 B

12345678910111213141516
  1. /**
  2. * @fileoverview Handwritten code of WireFormat.
  3. */
  4. goog.module('proto.conformance.WireFormat');
  5. /**
  6. * @enum {number}
  7. */
  8. const WireFormat = {
  9. UNSPECIFIED: 0,
  10. PROTOBUF: 1,
  11. JSON: 2,
  12. TEXT_FORMAT: 4,
  13. };
  14. exports = WireFormat;