Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions packages/react-native/src/types/globals.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,19 @@ declare global {
*
* @see https://github.com/facebook/react-native/issues/934
*/
const originalXMLHttpRequest: any;
var originalXMLHttpRequest: any;

const __BUNDLE_START_TIME__: number;
const ErrorUtils: ErrorUtils;
var __BUNDLE_START_TIME__: number;
var ErrorUtils: ErrorUtils;

/**
* This variable is set to true when react-native is running in Dev mode
* @example
* if (__DEV__) console.log('Running in dev mode')
*/
const __DEV__: boolean;
var __DEV__: boolean;

const HermesInternal: null | {};
var HermesInternal: null | {};

// #region Timer Functions

Expand Down