mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-07 23:37:35 +08:00
9 lines
179 B
TypeScript
9 lines
179 B
TypeScript
import I18n from 'ex-react-native-i18n';
|
|
|
|
I18n.defaultLocale = 'en';
|
|
I18n.fallbacks = true;
|
|
I18n.translations = {};
|
|
I18n.locale = 'zh';
|
|
|
|
const deviceLocale: string = I18n.locale;
|