AlertButtonForm
Form triggered by an Alert which contains only Buttons
TypeScript
export type AlertButtonForm = Omit<AdaptableForm<AlertFormContext>, 'title' | 'buttons' | 'description'> & {
Buttons?: AlertButton<AlertFormContext>[];
};References
AdaptableForm | AlertFormContext | AlertButton | AlertFormContext