hyperformula-dc
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
15 lines (14 loc) • 479 B
TypeScript
/**
* @license
* Copyright (c) 2021 Handsoncode. All rights reserved.
*/
import { EmptyCellVertex, ParsingErrorVertex, RangeVertex, ValueCellVertex } from './';
import { FormulaVertex } from './FormulaCellVertex';
/**
* Represents vertex which keeps values of one or more cells
*/
export declare type CellVertex = FormulaVertex | ValueCellVertex | EmptyCellVertex | ParsingErrorVertex;
/**
* Represents any vertex
*/
export declare type Vertex = CellVertex | RangeVertex;