Skip to content

Commit 7aed33b

Browse files
committed
fix: remove unwanted exports
1 parent f704b22 commit 7aed33b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

message.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@ jspb.Message.GENERATE_FROM_OBJECT = goog.define(
198198
* @define {boolean} Whether to generate toString methods for objects. Turn
199199
* this off if you do not use toString in your project and want to trim it
200200
* from the compiled JS.
201-
* @export
202201
*/
203202
jspb.Message.GENERATE_TO_STRING =
204203
goog.define('jspb.Message.GENERATE_TO_STRING', true);
@@ -219,7 +218,7 @@ jspb.Message.ASSUME_LOCAL_ARRAYS =
219218
* reduces the size of serialized protos. The price is an extra iteration of
220219
* the proto before serialization. This is enabled by default to be
221220
* backwards compatible. Projects are advised to turn this flag always off.
222-
* @export
221+
* @private
223222
*/
224223
jspb.Message.SERIALIZE_EMPTY_TRAILING_FIELDS =
225224
goog.define('jspb.Message.SERIALIZE_EMPTY_TRAILING_FIELDS', true);
@@ -236,7 +235,7 @@ jspb.Message.SUPPORTS_UINT8ARRAY_ = (typeof Uint8Array == 'function');
236235
/**
237236
* The internal data array.
238237
* @type {!Array}
239-
* @export
238+
* @private
240239
*/
241240
jspb.Message.prototype.array;
242241

0 commit comments

Comments
 (0)