1
0
mirror of https://github.com/MikeMcl/decimal.js.git synced 2026-09-23 20:35:04 +00:00

Put global ts definitions in separate file (see bignumber.js #143)

This commit is contained in:
Michael Mclaughlin
2018-03-10 22:00:51 +00:00
parent a821788a7c
commit 93930f8a23
3 changed files with 418 additions and 123 deletions

View File

@@ -159,7 +159,7 @@ pi.toFraction(1000) // [ '355', '113' ]
All calculations are rounded according to the number of significant digits and rounding mode
specified by the `precision` and `rounding` properties of the Decimal constructor.
Multiple Decimal constructors can be created, each with their own independent configuration which
For advanced usage, multiple Decimal constructors can be created, each with their own independent configuration which
applies to all Decimal numbers created from it.
```js