Files
ospab.host/ospabhost/frontend/src/middleware/index.ts
2025-12-13 12:53:28 +03:00

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';