UNPKG

hyperformula-dc

Version:

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

13 lines (12 loc) 460 B
/** * @license * Copyright (c) 2021 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); }