UNPKG

rozenite-custom-commands

Version:

Add and execute custom commands in React Native via React Native DevTools powered by Rozenite

12 lines (11 loc) 278 B
import { CustomCommandUI } from './types'; export type CustomCommandsEventMap = { 'request-initial': unknown; 'custom-commands': { commands: CustomCommandUI[]; }; 'command-callback': { id: string; args?: Record<string, string>; }; };