Interface SASMenuItem

interface SASMenuItem {
    disabled?: boolean | (() => boolean);
    iconClass?: string;
    items?: SASMenuItem[];
    label?: string;
    separator?: boolean;
    showLabel?: boolean;
    onClick?(): void;
}

Properties

disabled?: boolean | (() => boolean)
iconClass?: string
items?: SASMenuItem[]
label?: string
separator?: boolean
showLabel?: boolean

Methods

  • Returns void