hyperformula-dc
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
13 lines (12 loc) • 532 B
TypeScript
/**
* @license
* Copyright (c) 2021 Handsoncode. All rights reserved.
*/
import { DependencyGraph } from '../DependencyGraph';
import { RawInterpreterValue } from '../interpreter/InterpreterValue';
import { SimpleRangeValue } from '../interpreter/SimpleRangeValue';
export declare abstract class AdvancedFind {
protected dependencyGraph: DependencyGraph;
protected constructor(dependencyGraph: DependencyGraph);
advancedFind(keyMatcher: (arg: RawInterpreterValue) => boolean, rangeValue: SimpleRangeValue): number;
}