From 063e5fb7e9e6abaacd6f98e9e58b2d7ac93508c2 Mon Sep 17 00:00:00 2001 From: Michael M Date: Fri, 7 Oct 2022 18:09:07 +0100 Subject: [PATCH] #209 Correct return type --- decimal.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/decimal.d.ts b/decimal.d.ts index 19ca1a7..67256b0 100644 --- a/decimal.d.ts +++ b/decimal.d.ts @@ -265,7 +265,7 @@ export declare class Decimal { static random(significantDigits?: number): Decimal; static round(n: Decimal.Value): Decimal; static set(object: Decimal.Config): Decimal.Constructor; - static sign(n: Decimal.Value): Decimal; + static sign(n: Decimal.Value): number; static sin(n: Decimal.Value): Decimal; static sinh(n: Decimal.Value): Decimal; static sqrt(n: Decimal.Value): Decimal;