UNPKG

math-expression-evaluator

Version:
4 lines 237 B
import { toPostfix } from './postfix'; export type Constants = Record<string, number>; export declare function postfixEval(arr: ReturnType<typeof toPostfix>, Constants?: Constants): number; //# sourceMappingURL=postfix_evaluator.d.ts.map