UNPKG

lighthouse

Version:

Automated auditing, performance metrics, and best practices for the web.

26 lines 659 B
/** * @license * Copyright 2021 Google LLC * SPDX-License-Identifier: Apache-2.0 */ /** * @param {any[]} array * @param {any} needle * @param {any} comparator */ declare function lowerBound(array: any[], needle: any, comparator: any, left: any, right: any): any; /** * @param {any[]} array * @param {any} needle * @param {any} comparator */ declare function upperBound(array: any[], needle: any, comparator: any, left: any, right: any): any; export namespace ArrayUtilities { export { lowerBound }; export { upperBound }; } export namespace DevToolsPath { let EmptyUrlString: string; } export {}; //# sourceMappingURL=Platform.d.ts.map