mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
5e07347948
Summary: Changelog: [JS] Style: Improve flow typing for UIManagerInjection for static view configs Reviewed By: yungsters Differential Revision: D33522890 fbshipit-source-id: 4b0d4da4932473e2316abf25b00896c33f285b63
16 lines
344 B
JavaScript
16 lines
344 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and 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
|
|
*/
|
|
|
|
import type {UIManagerJSInterface} from './UIManager';
|
|
|
|
export default {
|
|
unstable_UIManager: (null: ?UIManagerJSInterface),
|
|
};
|