alpha-version-dce-check-in-ui
Version:
UI for taking attendance and checking people in.
18 lines (17 loc) • 348 B
TypeScript
/**
* Types of buttons in the modal
* @author Gabe Abrams
*/
declare 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;