UNPKG

348 BTypeScriptView Raw
1export declare function detectDomainLocale(domainItems: Array<{
2 http?: boolean;
3 domain: string;
4 locales?: string[];
5 defaultLocale: string;
6}> | undefined, hostname?: string, detectedLocale?: string): {
7 http?: boolean | undefined;
8 domain: string;
9 locales?: string[] | undefined;
10 defaultLocale: string;
11} | undefined;