Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
530 B
Text
14 lines
530 B
Text
export interface ResolveLocaleResult {
|
|
locale: string;
|
|
dataLocale: string;
|
|
[k: string]: any;
|
|
}
|
|
/**
|
|
* https://tc39.es/ecma402/#sec-resolvelocale
|
|
*/
|
|
export declare function ResolveLocale<K extends string, D extends {
|
|
[k in K]: any;
|
|
}>(availableLocales: Set<string> | readonly string[], requestedLocales: readonly string[], options: {
|
|
localeMatcher: string;
|
|
[k: string]: string;
|
|
}, relevantExtensionKeys: K[], localeData: Record<string, D | undefined>, getDefaultLocale: () => string): ResolveLocaleResult;
|