Item: {
    checked?: boolean;
    disabled?: boolean;
    flat?: boolean;
    hidden?: boolean;
    icon: string;
    onClick?: (() => void);
    order?: number;
    showInActionBar?: boolean;
    title: string;
    type: "btn";
} | {
    component: any;
    hidden?: boolean;
    order?: number;
    type: "custom";
}

Type declaration

  • Optional checked?: boolean
  • Optional disabled?: boolean
  • Optional flat?: boolean
  • Optional hidden?: boolean
  • icon: string
  • Optional onClick?: (() => void)
      • (): void
      • Returns void

  • Optional order?: number
  • Optional showInActionBar?: boolean
  • title: string
  • type: "btn"

Type declaration

  • component: any
  • Optional hidden?: boolean
  • Optional order?: number
  • type: "custom"

Generated using TypeDoc