mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-20 12:00:53 +08:00
Fix the NOT method declaration as per feedback
This commit is contained in:
Vendored
+1
-5
@@ -175,11 +175,7 @@ interface BigInteger {
|
||||
and( number: string ): BigInteger;
|
||||
|
||||
/** Performs the bitwise NOT operation. */
|
||||
not( number: number ): BigInteger;
|
||||
/** Performs the bitwise NOT operation. */
|
||||
not( number: BigInteger ): BigInteger;
|
||||
/** Performs the bitwise NOT operation. */
|
||||
not( number: string ): BigInteger;
|
||||
not(): BigInteger;
|
||||
|
||||
/** Performs the bitwise OR operation. */
|
||||
or( number: number ): BigInteger;
|
||||
|
||||
Reference in New Issue
Block a user