Merge pull request #9930 from CaselIT/patch-4

Updated mathjs
This commit is contained in:
Mohamed Hegazy
2016-07-04 09:31:16 -07:00
committed by GitHub

11
mathjs/mathjs.d.ts vendored
View File

@@ -1333,10 +1333,15 @@ declare namespace mathjs {
export interface MathNode {
isNode: boolean;
isSymbolNode: boolean;
isSymbolNode?: boolean;
isConstantNode?: boolean;
isOperatorNode?: boolean;
op?: string;
fn?: string;
args?: MathNode[];
type: string;
name: string;
value: any;
name?: string;
value?: any;
compile(): EvalFunction;
eval(): any;