Files
react-native/interface.js
T
rj1 7fedd7577a fixed typo in interface.js (#36049)
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
2023-02-03 08:12:29 -08:00

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)
};*/