forked from ChromeDevTools/devtools-frontend
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathreact_native.d.ts
More file actions
25 lines (23 loc) · 1 KB
/
Copy pathreact_native.d.ts
File metadata and controls
25 lines (23 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (c) Meta Platforms, Inc. and affiliates.
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
export {};
declare global {
namespace globalThis {
// eslint-disable-next-line no-var
var enableReactNativePerfMetrics: boolean|undefined;
// eslint-disable-next-line no-var
var enableReactNativePerfMetricsGlobalPostMessage: boolean|undefined;
// eslint-disable-next-line no-var
var enableReactNativeOpenInExternalEditor: boolean|undefined;
// eslint-disable-next-line no-var
var enableDisplayingFullDisconnectedReason: boolean|undefined;
// eslint-disable-next-line no-var
var enableTimelineFrames: boolean|undefined;
// eslint-disable-next-line no-var
var reactNativeOpenInEditorButtonImage: string|undefined;
// eslint-disable-next-line no-var,@typescript-eslint/naming-convention
var FB_ONLY__reactNativeFeedbackLink: string|undefined;
}
}