Update big.js.d.ts

otherwise typescript will make a script that will try to access a variable that doesn't exist

https://github.com/Microsoft/TypeScript/wiki/What's-new-in-TypeScript#const-enum-completely-inlined-enums
This commit is contained in:
KLuuKer
2015-09-07 14:02:33 +02:00
parent bb051830df
commit ad21350999
+2 -2
View File
@@ -6,7 +6,7 @@
declare module BigJsLibrary {
export enum RoundingMode {
export const enum RoundingMode {
RoundTowardsZero = 0,
RoundTowardsNearestAwayFromZero = 1,
RoundTowardsNearestTowardsEven = 2,
@@ -200,4 +200,4 @@ declare module BigJsLibrary {
}
}
declare var Big: BigJsLibrary.BigJS;
declare var Big: BigJsLibrary.BigJS;