@awayjs/core
Version:
AwayJS core classes
19 lines (18 loc) • 437 B
JavaScript
import { __extends } from "tslib";
import { EventBase } from './EventBase';
var TimerEvent = /** @class */ (function (_super) {
__extends(TimerEvent, _super);
function TimerEvent(type) {
return _super.call(this, type) || this;
}
/**
*
*/
TimerEvent.TIMER = 'timer';
/**
*
*/
TimerEvent.TIMER_COMPLETE = 'timerComplete';
return TimerEvent;
}(EventBase));
export { TimerEvent };