( expr: LatexString | ExpressionInput, options?: FreeFunctionOptions )
| 153 | options?: FreeFunctionOptions |
| 154 | ): |
| 155 | | null |
| 156 | | ReadonlyArray<Expression> |
| 157 | | Record<string, Expression> |
| 158 | | Array<Record<string, Expression>> { |
| 159 | return toExpression(expr, options).solve(vars); |
| 160 | } |
| 161 | |
| 162 | export function expandAll( |
| 163 | expr: LatexString | ExpressionInput, |
no test coverage detected