Interface CustomMenuOption

A single menu option.

interface CustomMenuOption {
    handler: () => void;
    text: string;
}

Properties

Properties

handler: () => void

The callback handler to call when the option is selected.

text: string

The text to display for the menu option.

MMNEPVFCICPMFPCPTTAAATR