Fix the NOT method declaration as per feedback

This commit is contained in:
Roel van Uden
2015-02-09 18:43:41 +01:00
parent 9aa2d37c93
commit 6de136877a
+1 -5
View File
@@ -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;