Skip to content

Commit 063e5fb

Browse files
authored
#209 Correct return type
1 parent 65e63ce commit 063e5fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

decimal.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ export declare class Decimal {
265265
static random(significantDigits?: number): Decimal;
266266
static round(n: Decimal.Value): Decimal;
267267
static set(object: Decimal.Config): Decimal.Constructor;
268-
static sign(n: Decimal.Value): Decimal;
268+
static sign(n: Decimal.Value): number;
269269
static sin(n: Decimal.Value): Decimal;
270270
static sinh(n: Decimal.Value): Decimal;
271271
static sqrt(n: Decimal.Value): Decimal;

0 commit comments

Comments
 (0)