(
latex: LatexString,
options?: Partial<ParseLatexOptions> & { form?: FormOption }
)
| 71 | } |
| 72 | |
| 73 | export function parse( |
| 74 | latex: LatexString, |
| 75 | options?: Partial<ParseLatexOptions> & { form?: FormOption } |
| 76 | ): Expression { |
| 77 | return getDefaultEngine().parse(latex, options); |
| 78 | } |
| 79 | |
| 80 | export function expr( |
| 81 | expr: ExpressionInput, |
nothing calls this directly
no test coverage detected