UNPKG

hyperformula

Version:

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

13 lines 877 B
/** * @license * Copyright (c) 2025 Handsoncode. All rights reserved. */ export { cellAddressFromString, simpleCellAddressFromString, simpleCellAddressToString, simpleCellRangeFromString, simpleCellRangeToString } from "./addressRepresentationConverters.mjs"; export { CellAddress } from "./CellAddress.mjs"; export { ParserWithCaching } from "./ParserWithCaching.mjs"; export { collectDependencies } from "./collectDependencies.mjs"; export { buildLexerConfig } from "./LexerConfig.mjs"; export { FormulaLexer } from "./FormulaParser.mjs"; export { AstNodeType, ParsingErrorType, buildProcedureAst, buildCellRangeAst, buildParsingErrorAst, buildCellErrorAst } from "./Ast.mjs"; export { Unparser } from "./Unparser.mjs"; export { AddressDependency, CellRangeDependency, ColumnRangeDependency, RowRangeDependency, NamedExpressionDependency } from "./RelativeDependency.mjs";