interface Menu {
    acceptReporters?: boolean;
    items: string | (string | { text: string; value: string })[];
}

Properties

acceptReporters?: boolean
items: string | (string | { text: string; value: string })[]

A list of static items in the menu, or the name of the dynamic menu function.