UNPKG

@letanure/resend-cli

Version:

A command-line interface for Resend email API

15 lines 443 B
export declare enum MenuState { send = "send", batch = "batch", retrieve = "retrieve", update = "update", cancel = "cancel" } interface MenuProps { onExit: () => void; onSelect: (menuId: MenuState) => void; initialSelectedKey?: MenuState; } export declare const Menu: ({ onExit, onSelect, initialSelectedKey }: MenuProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Menu.d.ts.map