UNPKG

hyperformula-dc

Version:

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

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