UNPKG

hyperformula

Version:

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

13 lines (12 loc) 472 B
/** * @license * Copyright (c) 2025 Handsoncode. All rights reserved. */ import { SimpleCellAddress } from '../Cell'; import { FormulaVertex } from '../DependencyGraph/FormulaCellVertex'; export declare class InterpreterState { formulaAddress: SimpleCellAddress; arraysFlag: boolean; formulaVertex?: FormulaVertex | undefined; constructor(formulaAddress: SimpleCellAddress, arraysFlag: boolean, formulaVertex?: FormulaVertex | undefined); }