UNPKG

@bestapps/voice-framework

Version:
13 lines (11 loc) 210 B
'use strict'; let Event = require('./event'); /** * Occurs when app starting */ class InitEvent extends Event { constructor(data = {}){ super('onInit', data); } } module.exports = InitEvent;