hyperformula
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
19 lines (17 loc) • 363 B
JavaScript
;
exports.__esModule = true;
exports.CellVertex = void 0;
var _Vertex = require("./Vertex");
/**
* @license
* Copyright (c) 2025 Handsoncode. All rights reserved.
*/
/**
* Represents vertex which keeps values of one or more cells
*/
class CellVertex extends _Vertex.Vertex {
constructor() {
super();
}
}
exports.CellVertex = CellVertex;