UNPKG

@koishijs/i18n-utils

Version:
8 lines (7 loc) 218 B
export type LocaleTree = { [key in string]: LocaleTree; }; export namespace LocaleTree { function from(locales: string[]): LocaleTree; } export function fallback(tree: LocaleTree, locales: string[]): string[];