8 lines
269 B
TypeScript
8 lines
269 B
TypeScript
// Export the main i18n setup
|
|
export { default as i18n, loadTranslations } from './setup'
|
|
|
|
// Export the React context and hook
|
|
export { TranslationProvider } from './TranslationContext'
|
|
|
|
// Export types
|
|
export type { I18nInstance, TranslationResources } from './setup' |