react-native
Version:
A framework for building native apps using React
35 lines (33 loc) • 1.1 kB
TypeScript
/**
* 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.
*
* @generated SignedSource<<6709e145152765fbb6acf1813ece5f21>>
*
* This file was translated from Flow by scripts/build-types/index.js.
* Original file: packages/react-native/Libraries/Utilities/DevSettings.js
*/
declare let DevSettings: {
/**
* Adds a custom menu item to the developer menu.
*
* @param title - The title of the menu item. Is internally used as id and should therefore be unique.
* @param handler - The callback invoked when pressing the menu item.
*/
addMenuItem(title: string, handler: () => unknown): void;
/**
* Reload the application.
*
* @param reason
*/
reload(reason?: string): void;
onFastRefresh(): void;
};
/**
* The DevSettings module exposes methods for customizing settings for developers in development.
*/
declare const $$DevSettings: typeof DevSettings;
declare type $$DevSettings = typeof $$DevSettings;
export default $$DevSettings;