File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -388,6 +388,34 @@ ByteBuffer.prototype.writeUint32 = function(value, offset) {};
388
388
*/
389
389
ByteBuffer . prototype . readUint32 = function ( offset ) { } ;
390
390
391
+ /**
392
+ * @param {number|Long } value
393
+ * @param {number= } offset
394
+ * @return {!ByteBuffer }
395
+ */
396
+ ByteBuffer . prototype . writeInt64 = function ( value , offset ) { } ;
397
+
398
+ /**
399
+ * @param {number= } offset
400
+ * @return {Long }
401
+ * @throws {Error }
402
+ */
403
+ ByteBuffer . prototype . readInt64 = function ( offset ) { } ;
404
+
405
+ /**
406
+ * @param {number|Long } value
407
+ * @param {number= } offset
408
+ * @return {!ByteBuffer }
409
+ */
410
+ ByteBuffer . prototype . writeUint64 = function ( value , offset ) { } ;
411
+
412
+ /**
413
+ * @param {number= } offset
414
+ * @return {Long }
415
+ * @throws {Error }
416
+ */
417
+ ByteBuffer . prototype . readUint64 = function ( offset ) { } ;
418
+
391
419
/**
392
420
* @param {number } value
393
421
* @param {number= } offset
You can’t perform that action at this time.
0 commit comments