ActionBtn: {
    hidden?: boolean;
    icon: string;
    key?: string | number;
    onClick: ((e) => void);
    order?: number;
    style?: string;
    title: string;
    type: "normal";
} | {
    hidden?: boolean;
    order?: number;
    type: "separator";
} | {
    component: any;
    hidden?: boolean;
    key?: string | number;
    order?: number;
    type: "custom";
}

Type declaration

  • Optional hidden?: boolean
  • icon: string
  • Optional key?: string | number
  • onClick: ((e) => void)
      • (e): void
      • Parameters

        • e: MouseEvent

        Returns void

  • Optional order?: number
  • Optional style?: string
  • title: string
  • type: "normal"

Type declaration

  • Optional hidden?: boolean
  • Optional order?: number
  • type: "separator"

Type declaration

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

Generated using TypeDoc