mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-07-01 07:41:42 +02:00
appState contains variables that indicate whether an event is currently ongoing, and whether registration is currently allowed.
6 lines
109 B
TypeScript
6 lines
109 B
TypeScript
class AppState {
|
|
registrationEnabled: boolean;
|
|
currentlyInEvent: boolean;
|
|
}
|
|
|
|
export default AppState; |