Interface MenuItem

interface MenuItem {
    arguments?: { [arg: string]: unknown };
    buttonStyle?: {
        backgroundColor?: string;
        color?: string;
        iconColor?: string;
    };
    displayName: string;
    icon?: string;
    name: string;
    screen: string;
    type: "item";
}

Hierarchy (View Summary)

Properties

arguments?: { [arg: string]: unknown }
buttonStyle?: { backgroundColor?: string; color?: string; iconColor?: string }
displayName: string
icon?: string
name: string
screen: string
type: "item"