• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/**
2 * @fileoverview Handwritten code of WireFormat.
3 */
4goog.module('proto.conformance.WireFormat');
5
6/**
7 * @enum {number}
8 */
9const WireFormat = {
10  UNSPECIFIED: 0,
11  PROTOBUF: 1,
12  JSON: 2,
13  TEXT_FORMAT: 4,
14};
15
16exports = WireFormat;
17