hyperformula-dc
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
9 lines (8 loc) • 354 B
TypeScript
/**
* @license
* Copyright (c) 2021 Handsoncode. All rights reserved.
*/
import { AbsoluteCellRange } from './AbsoluteCellRange';
import { SimpleCellAddress } from './Cell';
import { NamedExpressionDependency } from './parser/RelativeDependency';
export declare type CellDependency = SimpleCellAddress | AbsoluteCellRange | NamedExpressionDependency;