1
+ import type { Timestamp } from './timestamp' ;
1
2
import type { EJSONOptions } from './extended_json' ;
2
3
import { isObjectLike } from './parser/utils' ;
3
4
@@ -297,7 +298,7 @@ export class Long {
297
298
}
298
299
299
300
/** Returns the sum of this and the specified Long. */
300
- add ( addend : string | number | Long ) : Long {
301
+ add ( addend : string | number | Long | Timestamp ) : Long {
301
302
if ( ! Long . isLong ( addend ) ) addend = Long . fromValue ( addend ) ;
302
303
303
304
// Divide each number into 4 chunks of 16 bits, and then sum the chunks.
@@ -334,7 +335,7 @@ export class Long {
334
335
* Returns the sum of this and the specified Long.
335
336
* @returns Sum
336
337
*/
337
- and ( other : string | number | Long ) : Long {
338
+ and ( other : string | number | Long | Timestamp ) : Long {
338
339
if ( ! Long . isLong ( other ) ) other = Long . fromValue ( other ) ;
339
340
return Long . fromBits ( this . low & other . low , this . high & other . high , this . unsigned ) ;
340
341
}
@@ -343,7 +344,7 @@ export class Long {
343
344
* Compares this Long's value with the specified's.
344
345
* @returns 0 if they are the same, 1 if the this is greater and -1 if the given one is greater
345
346
*/
346
- compare ( other : string | number | Long ) : 0 | 1 | - 1 {
347
+ compare ( other : string | number | Long | Timestamp ) : 0 | 1 | - 1 {
347
348
if ( ! Long . isLong ( other ) ) other = Long . fromValue ( other ) ;
348
349
if ( this . eq ( other ) ) return 0 ;
349
350
const thisNeg = this . isNegative ( ) ,
@@ -366,7 +367,7 @@ export class Long {
366
367
* Returns this Long divided by the specified. The result is signed if this Long is signed or unsigned if this Long is unsigned.
367
368
* @returns Quotient
368
369
*/
369
- divide ( divisor : string | number | Long ) : Long {
370
+ divide ( divisor : string | number | Long | Timestamp ) : Long {
370
371
if ( ! Long . isLong ( divisor ) ) divisor = Long . fromValue ( divisor ) ;
371
372
if ( divisor . isZero ( ) ) throw Error ( 'division by zero' ) ;
372
373
@@ -473,7 +474,7 @@ export class Long {
473
474
* Tests if this Long's value equals the specified's.
474
475
* @param other - Other value
475
476
*/
476
- equals ( other : string | number | Long ) : boolean {
477
+ equals ( other : string | number | Long | Timestamp ) : boolean {
477
478
if ( ! Long . isLong ( other ) ) other = Long . fromValue ( other ) ;
478
479
if ( this . unsigned !== other . unsigned && this . high >>> 31 === 1 && other . high >>> 31 === 1 )
479
480
return false ;
@@ -516,15 +517,15 @@ export class Long {
516
517
}
517
518
518
519
/** Tests if this Long's value is greater than the specified's. */
519
- greaterThan ( other : string | number | Long ) : boolean {
520
+ greaterThan ( other : string | number | Long | Timestamp ) : boolean {
520
521
return this . comp ( other ) > 0 ;
521
522
}
522
523
523
524
/** This is an alias of {@link Long.greaterThan} */
524
525
gt = Long . prototype . greaterThan ;
525
526
526
527
/** Tests if this Long's value is greater than or equal the specified's. */
527
- greaterThanOrEqual ( other : string | number | Long ) : boolean {
528
+ greaterThanOrEqual ( other : string | number | Long | Timestamp ) : boolean {
528
529
return this . comp ( other ) >= 0 ;
529
530
}
530
531
@@ -559,23 +560,23 @@ export class Long {
559
560
}
560
561
561
562
/** Tests if this Long's value is less than the specified's. */
562
- lessThan ( other : string | number | Long ) : boolean {
563
+ lessThan ( other : string | number | Long | Timestamp ) : boolean {
563
564
return this . comp ( other ) < 0 ;
564
565
}
565
566
566
567
/** This is an alias of {@link Long#lessThan}. */
567
568
lt = Long . prototype . lessThan ;
568
569
569
570
/** Tests if this Long's value is less than or equal the specified's. */
570
- lessThanOrEqual ( other : string | number | Long ) : boolean {
571
+ lessThanOrEqual ( other : string | number | Long | Timestamp ) : boolean {
571
572
return this . comp ( other ) <= 0 ;
572
573
}
573
574
574
575
/** This is an alias of {@link Long.lessThanOrEqual} */
575
576
lte = Long . prototype . lessThanOrEqual ;
576
577
577
578
/** Returns this Long modulo the specified. */
578
- modulo ( divisor : string | number | Long ) : Long {
579
+ modulo ( divisor : string | number | Long | Timestamp ) : Long {
579
580
if ( ! Long . isLong ( divisor ) ) divisor = Long . fromValue ( divisor ) ;
580
581
581
582
// use wasm support if present
@@ -602,7 +603,7 @@ export class Long {
602
603
* @param multiplier - Multiplier
603
604
* @returns Product
604
605
*/
605
- multiply ( multiplier : string | number | Long ) : Long {
606
+ multiply ( multiplier : string | number | Long | Timestamp ) : Long {
606
607
if ( this . isZero ( ) ) return Long . ZERO ;
607
608
if ( ! Long . isLong ( multiplier ) ) multiplier = Long . fromValue ( multiplier ) ;
608
609
@@ -683,7 +684,7 @@ export class Long {
683
684
}
684
685
685
686
/** Tests if this Long's value differs from the specified's. */
686
- notEquals ( other : string | number | Long ) : boolean {
687
+ notEquals ( other : string | number | Long | Timestamp ) : boolean {
687
688
return ! this . equals ( other ) ;
688
689
}
689
690
@@ -773,7 +774,7 @@ export class Long {
773
774
* @param subtrahend - Subtrahend
774
775
* @returns Difference
775
776
*/
776
- subtract ( subtrahend : string | number | Long ) : Long {
777
+ subtract ( subtrahend : string | number | Long | Timestamp ) : Long {
777
778
if ( ! Long . isLong ( subtrahend ) ) subtrahend = Long . fromValue ( subtrahend ) ;
778
779
return this . add ( subtrahend . neg ( ) ) ;
779
780
}
0 commit comments