hyperformula-dc
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
8 lines (7 loc) • 304 B
TypeScript
/**
* @license
* Copyright (c) 2021 Handsoncode. All rights reserved.
*/
import { FunctionRegistry } from '../interpreter/FunctionRegistry';
import { Ast, RelativeDependency } from './';
export declare const collectDependencies: (ast: Ast, functionRegistry: FunctionRegistry) => RelativeDependency[];