From 65e63cedc47587038bcee7f6994618beca2b2f2f Mon Sep 17 00:00:00 2001 From: Michael M Date: Fri, 7 Oct 2022 18:08:28 +0100 Subject: [PATCH] #209 Correct return type --- decimal.global.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/decimal.global.d.ts b/decimal.global.d.ts index 8cdac8c..f1683b3 100644 --- a/decimal.global.d.ts +++ b/decimal.global.d.ts @@ -286,7 +286,7 @@ export declare class Decimal { static random(significantDigits?: number): Decimal; static round(n: DecimalValue): Decimal; static set(object: DecimalConfig): DecimalConstructor; - static sign(n: DecimalValue): Decimal; + static sign(n: DecimalValue): number; static sin(n: DecimalValue): Decimal; static sinh(n: DecimalValue): Decimal; static sqrt(n: DecimalValue): Decimal;