UNPKG
@bestapps/voice-framework
Version:
latest (1.0.14)
1.0.14
Voice Framework
github.com/raks-ua/voice-framework
raks-ua/voice-framework
@bestapps/voice-framework
/
entity
/
event_dispatcher
/
end_event.js
13 lines
(11 loc)
•
239 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'
;
let
Event
=
require
(
'./event'
);
/** * Sending when app processed request and will be "closed" */
class
EndEvent
extends
Event
{
constructor
(
data = {}
) {
super
(
'onEnd'
, data); } }
module
.
exports
=
EndEvent
;