mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-19 05:03:32 +08:00
11
mathjs/mathjs.d.ts
vendored
11
mathjs/mathjs.d.ts
vendored
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user