mirror of
https://github.com/status-im/react-native.git
synced 2025-02-22 22:28:09 +00:00
Summary: Stop ignoring `metro` folder from RN and use their flowtypes correctly Reviewed By: hramos Differential Revision: D13085169 fbshipit-source-id: f285223afb7e89ac2c63e53d36be2f3645fa6761
16 lines
435 B
JavaScript
16 lines
435 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
|
|
*/
|
|
|
|
// metro-visualizer is not listed as a dependency of metro since it pulls a lot
|
|
// of transitive dependencies so we need to tell flow that it may exist.
|
|
declare module 'metro-visualizer' {
|
|
declare module.exports: any;
|
|
}
|