[@types/mathjs] import statement needs to come _after_ comment header

This commit is contained in:
andy.patterson
2018-03-30 13:28:49 -04:00
parent 0801530e9d
commit 30d6b3445b

View File

@@ -1,9 +1,10 @@
import { Decimal } from 'decimal.js';
// Type definitions for mathjs
// Project: http://mathjs.org/
// Definitions by: Ilya Shestakov <https://github.com/siavol>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
import { Decimal } from 'decimal.js';
declare var math: mathjs.IMathJsStatic;
export as namespace math;
export = math;