Skip to content

Commit e8a6706

Browse files
author
Daniel Wirtz
committed
64bit externs
1 parent 99b98b2 commit e8a6706

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

externs/ByteBuffer.js

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -388,6 +388,34 @@ ByteBuffer.prototype.writeUint32 = function(value, offset) {};
388388
*/
389389
ByteBuffer.prototype.readUint32 = function(offset) {};
390390

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+
391419
/**
392420
* @param {number} value
393421
* @param {number=} offset

0 commit comments

Comments
 (0)