UNPKG

expo-dev-menu

Version:

Expo/React Native module with the developer menu.

29 lines (27 loc) 609 B
/** * An object representing the custom development client menu entry. */ export type ExpoDevMenuItem = { /** * Name of the entry, will be used as label. */ name: string; /** * Callback to fire, when user selects an item. */ callback: () => void; /** * A boolean specifying if the menu should close after the user interaction. * @default false */ shouldCollapse?: boolean; }; /** * @hidden */ export type ExpoDevMenu = { openMenu(): void; closeMenu(): void; hideMenu(): void; addDevMenuCallbacks(callbacks: { name: string; shouldCollapse?: boolean }[]): void; };