UNPKG

rozenite-custom-commands

Version:

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

8 lines (7 loc) 314 B
import { CustomCommandUI } from '../shared/types'; interface CommandCardProps { command: CustomCommandUI; onExecute: (payload: Record<string, string> | undefined) => void; } export declare const CommandCard: ({ command, onExecute }: CommandCardProps) => import("react/jsx-runtime").JSX.Element; export {};