# EventSetup
KEY | TYPE | DESCRIPTION | OPTIONAL | DEFAULT |
---|---|---|---|---|
event | String (opens new window) | The event. | ⨯ | none |
once | String (opens new window) | If the file will listen to the event once. | ✓ | false |
Execute | Async Function (opens new window) | When the event is executed. | ✓ | none |
module.exports = {
event: 'None',
once: false,
async Execute ( params ) {
/*
You may put your code here to be executed
when the event is fired.
*/
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14