UNPKG

hyperformula

Version:

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

14 lines (13 loc) 374 B
/** * @license * Copyright (c) 2025 Handsoncode. All rights reserved. */ import { InterpreterValue } from '../interpreter/InterpreterValue'; import { Vertex } from './Vertex'; /** * Represents vertex which keeps values of one or more cells */ export declare abstract class CellVertex extends Vertex { abstract getCellValue(): InterpreterValue; constructor(); }