hyperformula
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
35 lines (34 loc) • 741 B
JavaScript
;
exports.__esModule = true;
exports.ValueCellVertex = void 0;
/**
* @license
* Copyright (c) 2025 Handsoncode. All rights reserved.
*/
/**
* Represents vertex which keeps static cell value
*/
class ValueCellVertex {
/** Static cell value. */
constructor(parsedValue, rawValue) {
this.parsedValue = parsedValue;
this.rawValue = rawValue;
}
getValues() {
return {
parsedValue: this.parsedValue,
rawValue: this.rawValue
};
}
setValues(values) {
this.parsedValue = values.parsedValue;
this.rawValue = values.rawValue;
}
/**
* Returns cell value stored in vertex
*/
getCellValue() {
return this.parsedValue;
}
}
exports.ValueCellVertex = ValueCellVertex;