Merge pull request #15805 from alitaheri/fix-decimal-js-import

Fix decimal.js es6 default export
This commit is contained in:
Ryan Cavanaugh
2017-04-17 12:58:52 -07:00
committed by GitHub
+2
View File
@@ -189,6 +189,8 @@ declare namespace decimal {
}
interface IDecimalStatic extends IDecimalConfig {
default: IDecimalStatic;
(value: number | string | Decimal, base?: number): Decimal;
new(value: number | string | Decimal, base?: number): Decimal;