Skip to content

Commit

Permalink
MikeMcl#209 Correct return type
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcl authored Oct 7, 2022
1 parent 65e63ce commit 063e5fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion decimal.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 063e5fb

Please sign in to comment.