hyperformula
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
16 lines (15 loc) • 406 B
JavaScript
;
exports.__esModule = true;
exports.InterpreterState = void 0;
/**
* @license
* Copyright (c) 2025 Handsoncode. All rights reserved.
*/
class InterpreterState {
constructor(formulaAddress, arraysFlag, formulaVertex) {
this.formulaAddress = formulaAddress;
this.arraysFlag = arraysFlag;
this.formulaVertex = formulaVertex;
}
}
exports.InterpreterState = InterpreterState;