UNPKG

hyperformula

Version:

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

13 lines 261 B
/** * @license * Copyright (c) 2025 Handsoncode. All rights reserved. */ import { Vertex } from "./Vertex.mjs"; /** * Represents vertex which keeps values of one or more cells */ export class CellVertex extends Vertex { constructor() { super(); } }