import type { MenuCommandItem } from "../menus/context_menu.js"; import type { CommandNames } from "./app_context.js"; type ListenerReturnType = void | Promise; export interface SelectMenuItemEventListener { selectMenuItemHandler(item: MenuCommandItem): ListenerReturnType; }