hyperformula
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
15 lines (14 loc) • 687 B
TypeScript
/**
* @license
* Copyright (c) 2025 Handsoncode. All rights reserved.
*/
import { DependencyGraph } from '../DependencyGraph';
import { RawNoErrorScalarValue } from '../interpreter/InterpreterValue';
import { SimpleRangeValue } from '../SimpleRangeValue';
import { AdvancedFind } from './AdvancedFind';
import { SearchOptions, SearchStrategy } from './SearchStrategy';
export declare class RowSearchStrategy extends AdvancedFind implements SearchStrategy {
protected dependencyGraph: DependencyGraph;
constructor(dependencyGraph: DependencyGraph);
find(searchKey: RawNoErrorScalarValue, rangeValue: SimpleRangeValue, searchOptions: SearchOptions): number;
}