hyperformula
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
16 lines (15 loc) • 447 B
TypeScript
/**
* @license
* Copyright (c) 2025 Handsoncode. All rights reserved.
*/
import { GraphNode } from './Graph';
/**
* Base class for all types of vertices in the dependency graph
*/
export declare abstract class Vertex implements GraphNode {
/**
* Used internally by Graph class. Should not be set by other classes.
* idInGraph is defined if and only if the vertex is stored in dependency graph.
*/
idInGraph?: number;
}