UNPKG

hyperformula-dc

Version:

HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas

20 lines (19 loc) 469 B
/** * @license * Copyright (c) 2021 Handsoncode. All rights reserved. */ import { AstNodeType } from './Ast'; export declare const binaryOpTokenMap: { PLUS_OP: string; MINUS_OP: string; TIMES_OP: string; DIV_OP: string; CONCATENATE_OP: string; POWER_OP: string; EQUALS_OP: string; NOT_EQUAL_OP: string; GREATER_THAN_OP: string; GREATER_THAN_OR_EQUAL_OP: string; LESS_THAN_OP: string; LESS_THAN_OR_EQUAL_OP: string; };