( expr: LatexString | ExpressionInput, options?: FreeFunctionOptions )
| 134 | } |
| 135 | |
| 136 | export function expand( |
| 137 | expr: LatexString | ExpressionInput, |
| 138 | options?: FreeFunctionOptions |
| 139 | ): Expression { |
| 140 | return expandExpr(toExpression(expr, options)); |
| 141 | } |
| 142 | |
| 143 | export function solve( |
| 144 | expr: LatexString | ExpressionInput, |
nothing calls this directly
no test coverage detected