File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ export declare class Decimal {
251251 static exp ( n : Decimal . Value ) : Decimal ;
252252 static floor ( n : Decimal . Value ) : Decimal ;
253253 static hypot ( ...n : Decimal . Value [ ] ) : Decimal ;
254- static isDecimal ( object : any ) : boolean
254+ static isDecimal ( object : any ) : object is Decimal ;
255255 static ln ( n : Decimal . Value ) : Decimal ;
256256 static log ( n : Decimal . Value , base ?: Decimal . Value ) : Decimal ;
257257 static log2 ( n : Decimal . Value ) : Decimal ;
Original file line number Diff line number Diff line change @@ -272,7 +272,7 @@ export declare class Decimal {
272272 static exp ( n : DecimalValue ) : Decimal ;
273273 static floor ( n : DecimalValue ) : Decimal ;
274274 static hypot ( ...n : DecimalValue [ ] ) : Decimal ;
275- static isDecimal ( object : any ) : boolean
275+ static isDecimal ( object : any ) : object is Decimal ;
276276 static ln ( n : DecimalValue ) : Decimal ;
277277 static log ( n : DecimalValue , base ?: DecimalValue ) : Decimal ;
278278 static log2 ( n : DecimalValue ) : Decimal ;
You can’t perform that action at this time.
0 commit comments