mirror of
https://github.com/ascribe/onion.git
synced 2024-12-22 09:23:13 +01:00
19 lines
455 B
JavaScript
19 lines
455 B
JavaScript
'use strict';
|
|
|
|
import { alt } from '../alt';
|
|
|
|
class GlobalNotificationActions {
|
|
constructor() {
|
|
this.generateActions(
|
|
'appendGlobalNotification',
|
|
'showNextGlobalNotification',
|
|
'shiftGlobalNotification',
|
|
'cooldownGlobalNotifications',
|
|
'pauseGlobalNotifications',
|
|
'resumeGlobalNotifications'
|
|
);
|
|
}
|
|
}
|
|
|
|
export default alt.createActions(GlobalNotificationActions);
|