9 lines
350 B
TypeScript
9 lines
350 B
TypeScript
import { LookupMatcherResult } from './types';
|
|
/**
|
|
* https://tc39.es/ecma402/#sec-bestfitmatcher
|
|
* @param availableLocales
|
|
* @param requestedLocales
|
|
* @param getDefaultLocale
|
|
*/
|
|
export declare function BestFitMatcher(availableLocales: readonly string[], requestedLocales: readonly string[], getDefaultLocale: () => string): LookupMatcherResult;
|