interface DialogButton {
    icon: string;
    label: string;
    disabled: boolean;
    callback: ((arg0) => any);
}

Properties

icon: string

A Font Awesome icon for the button

label: string

The label for the button

disabled: boolean

Whether the button is disabled

callback: ((arg0) => any)

A callback function that fires when the button is clicked

Type declaration

    • (arg0): any
    • Parameters

      • arg0: jQuery

      Returns any