aboutsummaryrefslogtreecommitdiffhomepage
path: root/js/commonjs/export.js
blob: 2fc2fcbd5adb1e01da8e1fce56c93eee4bb23dca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 * @fileoverview Export symbols needed by generated code in CommonJS style.
 *
 * This effectively is our canonical list of what we publicly export from
 * the google-protobuf.js file that we build at distribution time.
 */

exports.Message = jspb.Message;
exports.BinaryReader = jspb.BinaryReader;
exports.BinaryWriter = jspb.BinaryWriter;
exports.ExtensionFieldInfo = jspb.ExtensionFieldInfo;

// These are used by generated code but should not be used directly by clients.
exports.exportSymbol = goog.exportSymbol;
exports.inherits = goog.inherits;
exports.object = {extend: goog.object.extend};