UNPKG

hyperformula-dc

Version:

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

12 lines (11 loc) 667 B
/** * @license * Copyright (c) 2021 Handsoncode. All rights reserved. */ import { AbsoluteCellRange } from '../AbsoluteCellRange'; import { SimpleCellAddress } from '../Cell'; import { FunctionRegistry } from '../interpreter/FunctionRegistry'; import { LazilyTransformingAstService } from '../LazilyTransformingAstService'; import { DependencyGraph } from './DependencyGraph'; import { Vertex } from './Vertex'; export declare const collectAddressesDependentToRange: (funcitonRegistry: FunctionRegistry, vertex: Vertex, range: AbsoluteCellRange, lazilyTransformingAstService: LazilyTransformingAstService, dependencyGraph: DependencyGraph) => SimpleCellAddress[];