(
expr: ExpressionInput,
options?: {
form?: FormOption;
scope?: Scope;
}
)
| 78 | } |
| 79 | |
| 80 | export function expr( |
| 81 | expr: ExpressionInput, |
| 82 | options?: { |
| 83 | form?: FormOption; |
| 84 | scope?: Scope; |
| 85 | } |
| 86 | ): Expression { |
| 87 | return getDefaultEngine().expr(expr, options); |
| 88 | } |
| 89 | |
| 90 | export function simplify( |
| 91 | expr: LatexString | ExpressionInput, |
nothing calls this directly
no test coverage detected