2016-07-12 03:43:53 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*
|
|
|
|
* @providesModule I18nManager
|
|
|
|
* @flow
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
type I18nManagerStatus = {
|
|
|
|
isRTL: boolean,
|
|
|
|
allowRTL: (allowRTL: boolean) => {},
|
2016-08-04 19:18:26 +00:00
|
|
|
forceRTL: (forceRTL: boolean) => {},
|
2016-07-12 03:43:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const I18nManager : I18nManagerStatus = require('NativeModules').I18nManager || {
|
|
|
|
isRTL: false,
|
|
|
|
allowRTL: () => {},
|
2016-08-04 19:18:26 +00:00
|
|
|
forceRTL: () => {},
|
2016-07-12 03:43:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = I18nManager;
|