mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
22475ed38d
Summary: Before we flow-typed NativeI18nManager, we defaulted the implementation of I18nManager to something safe when it wasn't available. After the flow-type, it became a requirement that NativeI18nManager be present in the app. This is leading to crashes: T45287329. This diff re-enables the defaults for I18nManager. Reviewed By: fkgozali Differential Revision: D15617660 fbshipit-source-id: c3a1c737663a1a4ceae484d0ad6cbf2bd86ffe5f
27 lines
699 B
JavaScript
27 lines
699 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import type {TurboModule} from '../TurboModule/RCTExport';
|
|
import * as TurboModuleRegistry from '../TurboModule/TurboModuleRegistry';
|
|
|
|
export interface Spec extends TurboModule {
|
|
+getConstants: () => {|
|
|
isRTL: boolean,
|
|
doLeftAndRightSwapInRTL: boolean,
|
|
|};
|
|
allowRTL: (allowRTL: boolean) => void;
|
|
forceRTL: (forceRTL: boolean) => void;
|
|
swapLeftAndRightInRTL: (flipStyles: boolean) => void;
|
|
}
|
|
|
|
export default TurboModuleRegistry.get<Spec>('I18nManager');
|