UNPKG

251 BJavaScriptView Raw
1/**
2 * @copyright Copyright (c) 2019 Maxim Khorin <maksimovichu@gmail.com>
3 */
4'use strict';
5
6const Base = require('./Event');
7
8module.exports = class ActionEvent extends Base {
9
10 constructor (action) {
11 super({action});
12 }
13};
\No newline at end of file