From 4f2d0f8667055d145d07c9c3ad8b8c6c9bbebc4d Mon Sep 17 00:00:00 2001 From: Ali Taheri Moghaddar Date: Wed, 12 Apr 2017 11:42:19 +0430 Subject: [PATCH] Fix decimal es6 default export --- types/decimal.js/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/decimal.js/index.d.ts b/types/decimal.js/index.d.ts index 16f7839448..69521a46cc 100644 --- a/types/decimal.js/index.d.ts +++ b/types/decimal.js/index.d.ts @@ -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;