(
expr: LatexString | ExpressionInput,
options?: Parameters<typeof compileExpr>[1] & { to?: T } & FreeFunctionOptions
)
| 167 | } |
| 168 | |
| 169 | export function compile<T extends string = 'javascript'>( |
| 170 | expr: LatexString | ExpressionInput, |
| 171 | options?: Parameters<typeof compileExpr>[1] & { to?: T } & FreeFunctionOptions |
| 172 | ): ReturnType<typeof compileExpr> { |
| 173 | return compileExpr(toExpression(expr, options), options); |
| 174 | } |
no test coverage detected