Type alias TMenuItemButtonList

TMenuItemButtonList: TMenuItem & {
    callback: ((value) => void);
    initValue: string;
    tooltip?: {
        label: string;
        position: "top" | "left" | "right" | "bottom";
    };
    type: "list";
    values: {
        label: string;
        value: string;
    }[];
}

Type declaration

  • callback: ((value) => void)
      • (value): void
      • Parameters

        • value: string

        Returns void

  • initValue: string
  • Optional tooltip?: {
        label: string;
        position: "top" | "left" | "right" | "bottom";
    }
    • label: string
    • position: "top" | "left" | "right" | "bottom"
  • type: "list"
  • values: {
        label: string;
        value: string;
    }[]

Generated using TypeDoc