@danielsimonjr/mathts-expression 0.2.0 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +6 -2
- package/dist/index.js +313 -286
- package/package.json +59 -59
package/dist/index.d.ts
CHANGED
|
@@ -992,6 +992,11 @@ declare const createParserClass: FactoryFunction<{
|
|
|
992
992
|
}): any;
|
|
993
993
|
}>;
|
|
994
994
|
|
|
995
|
+
declare const createParser: FactoryFunction<{
|
|
996
|
+
typed: any;
|
|
997
|
+
Parser: any;
|
|
998
|
+
}, any>;
|
|
999
|
+
|
|
995
1000
|
interface HelpDoc {
|
|
996
1001
|
name?: string;
|
|
997
1002
|
category?: string;
|
|
@@ -2992,7 +2997,6 @@ declare const createArrayNode: FactoryFunction<{
|
|
|
2992
2997
|
|
|
2993
2998
|
declare const createAssignmentNode: FactoryFunction<{
|
|
2994
2999
|
subset: any;
|
|
2995
|
-
matrix: any;
|
|
2996
3000
|
Node: new (...args: any[]) => MathNode;
|
|
2997
3001
|
}, {
|
|
2998
3002
|
new (object: MathNode, index: any, value?: MathNode): {
|
|
@@ -9281,4 +9285,4 @@ declare const createSymbolNode: FactoryFunction<Dependencies, {
|
|
|
9281
9285
|
};
|
|
9282
9286
|
}>;
|
|
9283
9287
|
|
|
9284
|
-
export { type CompiledExpression$1 as CompiledExpression, type Scope$1 as Scope, type TypedFunction, type TypedFunctionConstructor, compile, compileExpression, createAccessorNode, createArrayNode, createAssignmentNode, createBlockNode, createConditionalNode, createConstantNode, createEvaluate, createFunctionAssignmentNode, createFunctionNode, createHelpClass, createIndexNode, createNode, createObjectNode, createOperatorNode, createParenthesisNode, createParse, createParserClass, createRangeNode, createRelationalNode, createSymbolNode, getAssociativity, getOperator, getPrecedence, isAssociativeWith, keywords, properties };
|
|
9288
|
+
export { type CompiledExpression$1 as CompiledExpression, type Scope$1 as Scope, type TypedFunction, type TypedFunctionConstructor, compile, compileExpression, createAccessorNode, createArrayNode, createAssignmentNode, createBlockNode, createConditionalNode, createConstantNode, createEvaluate, createFunctionAssignmentNode, createFunctionNode, createHelpClass, createIndexNode, createNode, createObjectNode, createOperatorNode, createParenthesisNode, createParse, createParser, createParserClass, createRangeNode, createRelationalNode, createSymbolNode, getAssociativity, getOperator, getPrecedence, isAssociativeWith, keywords, properties };
|