mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
7fedd7577a
Summary: fixed a typo in interface.js ## Changelog [GENERAL] [FIXED] - Fixed a typo in interface.js Pull Request resolved: https://github.com/facebook/react-native/pull/36049 Test Plan: simple typo fix - no testing required Reviewed By: cortinico Differential Revision: D42996797 Pulled By: cipolleschi fbshipit-source-id: 8a5a5f28174f874c530549743019c281732d2da4
26 lines
792 B
JavaScript
26 lines
792 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.
|
|
*
|
|
* @format
|
|
* @flow strict
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
// NOTE: Hmm... I don't think declaring variables within this module actually
|
|
// accomplishes anything besides documenting that these globals are expected to
|
|
// exist. So I think the correct "fix" to this lint warning is to delete this
|
|
// entire file. But in lieu of doing that... no harm for now in keeping this
|
|
// file around, even if it is only for documentation purposes. ¯\_(ツ)_/¯
|
|
|
|
/* eslint-disable no-unused-vars */
|
|
|
|
declare var __DEV__: boolean;
|
|
|
|
declare var __REACT_DEVTOOLS_GLOBAL_HOOK__: any; /*?{
|
|
inject: ?((stuff: Object) => void)
|
|
};*/
|