14 lines
445 B
TypeScript
14 lines
445 B
TypeScript
// Экспорт всей системы локализации из одного места
|
|
export { LocaleProvider } from './LocaleProvider';
|
|
export { LocaleContext } from './locale.context';
|
|
export { useLocale, useLocalePath } from './locale.hooks';
|
|
export {
|
|
detectUserLocale,
|
|
setUserLocale,
|
|
getLocaleFromPath,
|
|
localePath,
|
|
RUSSIAN_COUNTRIES,
|
|
EXCLUDED_PATHS,
|
|
} from './locale.utils';
|
|
export type { Locale } from './locale.utils';
|