Type Alias: FormButton
type FormButton = {
additionalActions: ContextCommand[];
performDefaultAction: boolean;
text: string;
};
Properties
| Property | Type | Description |
|---|---|---|
additionalActions |
ContextCommand[] |
The action(s) to perform when the button is clicked. |
performDefaultAction |
boolean |
Determines whether the default button action will be performed |
text |
string |
The text displayed on the button. |