Skip to content

Commit 65e63ce

Browse files
authored
#209 Correct return type
1 parent 3dcadc7 commit 65e63ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

decimal.global.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ export declare class Decimal {
286286
static random(significantDigits?: number): Decimal;
287287
static round(n: DecimalValue): Decimal;
288288
static set(object: DecimalConfig): DecimalConstructor;
289-
static sign(n: DecimalValue): Decimal;
289+
static sign(n: DecimalValue): number;
290290
static sin(n: DecimalValue): Decimal;
291291
static sinh(n: DecimalValue): Decimal;
292292
static sqrt(n: DecimalValue): Decimal;

0 commit comments

Comments
 (0)