alpha-version-dce-check-in-ui
Version:
UI for taking attendance and checking people in.
19 lines (17 loc) • 322 B
text/typescript
/**
* Types of buttons in the modal
* @author Gabe Abrams
*/
enum ModalButtonType {
Okay = 'okay',
Cancel = 'cancel',
Yes = 'yes',
No = 'no',
Abandon = 'abandon',
GoBack = 'goBack',
Continue = 'continue',
ImSure = 'imSure',
Delete = 'delete',
Confirm = 'confirm',
}
export default ModalButtonType;