lighthouse
Version:
Automated auditing, performance metrics, and best practices for the web.
14 lines (10 loc) • 334 B
TypeScript
/**
* @license
* Copyright 2018 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
type Locale = import('../lhr/settings.js').Locale;
declare module 'lookup-closest-locale' {
function lookupClosestLocale(locale: string[]|string|undefined, available: Record<Locale, any>): Locale|undefined;
export = lookupClosestLocale;
}