GasWell-front/node_modules/@volar/source-map/lib/binarySearch.d.ts

6 lines
148 B
TypeScript
Raw Normal View History

export declare function binarySearch(values: number[], searchValue: number): {
low: number;
high: number;
match: number | undefined;
};