@@ -1195,6 +1195,7 @@ jspb.BinaryWriter.prototype.writeRepeatedSintHash64 = function(field, value) {
11951195 * works for both signed and unsigned fixed32s.
11961196 * @param {number } field The field number.
11971197 * @param {?Array<number> } value The array of ints to write.
1198+ * @export
11981199 */
11991200jspb . BinaryWriter . prototype . writeRepeatedFixed32 = function ( field , value ) {
12001201 if ( value == null ) return ;
@@ -1209,6 +1210,7 @@ jspb.BinaryWriter.prototype.writeRepeatedFixed32 = function(field, value) {
12091210 * works for both signed and unsigned fixed64s.
12101211 * @param {number } field The field number.
12111212 * @param {?Array<number> } value The array of ints to write.
1213+ * @export
12121214 */
12131215jspb . BinaryWriter . prototype . writeRepeatedFixed64 = function ( field , value ) {
12141216 if ( value == null ) return ;
@@ -1223,6 +1225,7 @@ jspb.BinaryWriter.prototype.writeRepeatedFixed64 = function(field, value) {
12231225 * works for both signed and unsigned fixed64s.
12241226 * @param {number } field The field number.
12251227 * @param {?Array<string> } value The array of decimal strings to write.
1228+ * @export
12261229 */
12271230jspb . BinaryWriter . prototype . writeRepeatedFixed64String = function (
12281231 field , value ) {
@@ -1237,6 +1240,7 @@ jspb.BinaryWriter.prototype.writeRepeatedFixed64String = function(
12371240 * Writes an array of numbers to the buffer as a repeated sfixed32 field.
12381241 * @param {number } field The field number.
12391242 * @param {?Array<number> } value The array of ints to write.
1243+ * @export
12401244 */
12411245jspb . BinaryWriter . prototype . writeRepeatedSfixed32 = function ( field , value ) {
12421246 if ( value == null ) return ;
@@ -1250,6 +1254,7 @@ jspb.BinaryWriter.prototype.writeRepeatedSfixed32 = function(field, value) {
12501254 * Writes an array of numbers to the buffer as a repeated sfixed64 field.
12511255 * @param {number } field The field number.
12521256 * @param {?Array<number> } value The array of ints to write.
1257+ * @export
12531258 */
12541259jspb . BinaryWriter . prototype . writeRepeatedSfixed64 = function ( field , value ) {
12551260 if ( value == null ) return ;
@@ -1277,6 +1282,7 @@ jspb.BinaryWriter.prototype.writeRepeatedSfixed64String = function(field, value)
12771282 * Writes an array of numbers to the buffer as a repeated float field.
12781283 * @param {number } field The field number.
12791284 * @param {?Array<number> } value The array of ints to write.
1285+ * @export
12801286 */
12811287jspb . BinaryWriter . prototype . writeRepeatedFloat = function ( field , value ) {
12821288 if ( value == null ) return ;
@@ -1290,6 +1296,7 @@ jspb.BinaryWriter.prototype.writeRepeatedFloat = function(field, value) {
12901296 * Writes an array of numbers to the buffer as a repeated double field.
12911297 * @param {number } field The field number.
12921298 * @param {?Array<number> } value The array of ints to write.
1299+ * @export
12931300 */
12941301jspb . BinaryWriter . prototype . writeRepeatedDouble = function ( field , value ) {
12951302 if ( value == null ) return ;
@@ -1303,6 +1310,7 @@ jspb.BinaryWriter.prototype.writeRepeatedDouble = function(field, value) {
13031310 * Writes an array of booleans to the buffer as a repeated bool field.
13041311 * @param {number } field The field number.
13051312 * @param {?Array<boolean> } value The array of ints to write.
1313+ * @export
13061314 */
13071315jspb . BinaryWriter . prototype . writeRepeatedBool = function ( field , value ) {
13081316 if ( value == null ) return ;
@@ -1316,6 +1324,7 @@ jspb.BinaryWriter.prototype.writeRepeatedBool = function(field, value) {
13161324 * Writes an array of enums to the buffer as a repeated enum field.
13171325 * @param {number } field The field number.
13181326 * @param {?Array<number> } value The array of ints to write.
1327+ * @export
13191328 */
13201329jspb . BinaryWriter . prototype . writeRepeatedEnum = function ( field , value ) {
13211330 if ( value == null ) return ;
@@ -1329,6 +1338,7 @@ jspb.BinaryWriter.prototype.writeRepeatedEnum = function(field, value) {
13291338 * Writes an array of strings to the buffer as a repeated string field.
13301339 * @param {number } field The field number.
13311340 * @param {?Array<string> } value The array of strings to write.
1341+ * @export
13321342 */
13331343jspb . BinaryWriter . prototype . writeRepeatedString = function ( field , value ) {
13341344 if ( value == null ) return ;
@@ -1343,6 +1353,7 @@ jspb.BinaryWriter.prototype.writeRepeatedString = function(field, value) {
13431353 * @param {number } field The field number.
13441354 * @param {?Array<!jspb.ByteSource> } value The arrays of arrays of bytes to
13451355 * write.
1356+ * @export
13461357 */
13471358jspb . BinaryWriter . prototype . writeRepeatedBytes = function ( field , value ) {
13481359 if ( value == null ) return ;
@@ -1360,6 +1371,7 @@ jspb.BinaryWriter.prototype.writeRepeatedBytes = function(field, value) {
13601371 * write.
13611372 * @param {function(MessageType, !jspb.BinaryWriter) } writerCallback
13621373 * Will be invoked with the value to write and the writer to write it with.
1374+ * @export
13631375 */
13641376jspb . BinaryWriter . prototype . writeRepeatedMessage = function (
13651377 field , value , writerCallback ) {
@@ -1380,6 +1392,7 @@ jspb.BinaryWriter.prototype.writeRepeatedMessage = function(
13801392 * write.
13811393 * @param {function(MessageType, !jspb.BinaryWriter) } writerCallback
13821394 * Will be invoked with the value to write and the writer to write it with.
1395+ * @export
13831396 */
13841397jspb . BinaryWriter . prototype . writeRepeatedGroup = function (
13851398 field , value , writerCallback ) {
@@ -1684,6 +1697,7 @@ jspb.BinaryWriter.prototype.writePackedSintHash64 = function(field, value) {
16841697 * Writes an array of numbers to the buffer as a packed fixed32 field.
16851698 * @param {number } field The field number.
16861699 * @param {?Array<number> } value The array of ints to write.
1700+ * @export
16871701 */
16881702jspb . BinaryWriter . prototype . writePackedFixed32 = function ( field , value ) {
16891703 if ( value == null || ! value . length ) return ;
@@ -1699,6 +1713,7 @@ jspb.BinaryWriter.prototype.writePackedFixed32 = function(field, value) {
16991713 * Writes an array of numbers to the buffer as a packed fixed64 field.
17001714 * @param {number } field The field number.
17011715 * @param {?Array<number> } value The array of ints to write.
1716+ * @export
17021717 */
17031718jspb . BinaryWriter . prototype . writePackedFixed64 = function ( field , value ) {
17041719 if ( value == null || ! value . length ) return ;
@@ -1731,6 +1746,7 @@ jspb.BinaryWriter.prototype.writePackedFixed64String = function(field, value) {
17311746 * Writes an array of numbers to the buffer as a packed sfixed32 field.
17321747 * @param {number } field The field number.
17331748 * @param {?Array<number> } value The array of ints to write.
1749+ * @export
17341750 */
17351751jspb . BinaryWriter . prototype . writePackedSfixed32 = function ( field , value ) {
17361752 if ( value == null || ! value . length ) return ;
@@ -1746,6 +1762,7 @@ jspb.BinaryWriter.prototype.writePackedSfixed32 = function(field, value) {
17461762 * Writes an array of numbers to the buffer as a packed sfixed64 field.
17471763 * @param {number } field The field number.
17481764 * @param {?Array<number> } value The array of ints to write.
1765+ * @export
17491766 */
17501767jspb . BinaryWriter . prototype . writePackedSfixed64 = function ( field , value ) {
17511768 if ( value == null || ! value . length ) return ;
@@ -1776,6 +1793,7 @@ jspb.BinaryWriter.prototype.writePackedSfixed64String = function(field, value) {
17761793 * Writes an array of numbers to the buffer as a packed float field.
17771794 * @param {number } field The field number.
17781795 * @param {?Array<number> } value The array of ints to write.
1796+ * @export
17791797 */
17801798jspb . BinaryWriter . prototype . writePackedFloat = function ( field , value ) {
17811799 if ( value == null || ! value . length ) return ;
@@ -1791,6 +1809,7 @@ jspb.BinaryWriter.prototype.writePackedFloat = function(field, value) {
17911809 * Writes an array of numbers to the buffer as a packed double field.
17921810 * @param {number } field The field number.
17931811 * @param {?Array<number> } value The array of ints to write.
1812+ * @export
17941813 */
17951814jspb . BinaryWriter . prototype . writePackedDouble = function ( field , value ) {
17961815 if ( value == null || ! value . length ) return ;
@@ -1806,6 +1825,7 @@ jspb.BinaryWriter.prototype.writePackedDouble = function(field, value) {
18061825 * Writes an array of booleans to the buffer as a packed bool field.
18071826 * @param {number } field The field number.
18081827 * @param {?Array<boolean> } value The array of ints to write.
1828+ * @export
18091829 */
18101830jspb . BinaryWriter . prototype . writePackedBool = function ( field , value ) {
18111831 if ( value == null || ! value . length ) return ;
@@ -1821,6 +1841,7 @@ jspb.BinaryWriter.prototype.writePackedBool = function(field, value) {
18211841 * Writes an array of enums to the buffer as a packed enum field.
18221842 * @param {number } field The field number.
18231843 * @param {?Array<number> } value The array of ints to write.
1844+ * @export
18241845 */
18251846jspb . BinaryWriter . prototype . writePackedEnum = function ( field , value ) {
18261847 if ( value == null || ! value . length ) return ;
0 commit comments