@danielsimonjr/mathts-expression 0.2.1 → 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 -1
- package/dist/index.js +285 -269
- 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;
|
|
@@ -9280,4 +9285,4 @@ declare const createSymbolNode: FactoryFunction<Dependencies, {
|
|
|
9280
9285
|
};
|
|
9281
9286
|
}>;
|
|
9282
9287
|
|
|
9283
|
-
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 };
|