Type alias TMenuItemSelect

TMenuItemSelect: TMenuItem & {
    callback: ((value) => void);
    initValue: string;
    type: "select";
    values: {
        label: string;
        value: string;
    }[];
}

Type declaration

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

        • value: string

        Returns void

  • initValue: string
  • type: "select"
  • values: {
        label: string;
        value: string;
    }[]

Generated using TypeDoc