mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-13 12:37:16 +08:00
11 lines
253 B
TypeScript
11 lines
253 B
TypeScript
import I18n, { getLanguages } from 'react-native-i18n';
|
|
|
|
getLanguages().then(languages => languages[0]);
|
|
|
|
I18n.defaultLocale = 'en';
|
|
I18n.fallbacks = true;
|
|
I18n.translations = {};
|
|
I18n.locale = 'fr';
|
|
|
|
const currentLocale: string = I18n.currentLocale();
|