From 6de136877ae7aa393d1866e4cd688c4cb270253f Mon Sep 17 00:00:00 2001 From: Roel van Uden Date: Mon, 9 Feb 2015 18:43:41 +0100 Subject: [PATCH] Fix the NOT method declaration as per feedback --- big-integer/big-integer.d.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/big-integer/big-integer.d.ts b/big-integer/big-integer.d.ts index 8b688d47c..633432e19 100644 --- a/big-integer/big-integer.d.ts +++ b/big-integer/big-integer.d.ts @@ -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;