( expr: LatexString | ExpressionInput, options?: FreeFunctionOptions )
| 102 | } |
| 103 | |
| 104 | export function N( |
| 105 | expr: LatexString | ExpressionInput, |
| 106 | options?: FreeFunctionOptions |
| 107 | ): Expression { |
| 108 | return toExpression(expr, options).N(); |
| 109 | } |
| 110 | |
| 111 | export function declare( |
| 112 | id: string, |
nothing calls this directly
no test coverage detected