Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/core/src/integer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ const INT_CACHE: Map<number, Integer> = new Map()
* @class A Integer class for representing a 64 bit two's-complement integer value.
* @param {number} low The low (signed) 32 bits of the long
* @param {number} high The high (signed) 32 bits of the long
*
* @deprecated This class will be removed or made internal in a future version of the driver.
* Please configure your driver to use BigInt instead.
*
* @constructor
*/
class Integer {
Expand Down