UNPKG

341 BJavaScriptView Raw
1/**
2 * Module : Kero webpack entry events index
3 * Author : liuyk(liuyuekai@yonyou.com)
4 * Date : 2016-08-09 15:24:46
5 */
6
7
8//相关依赖导入
9import {
10 eventsFunObj
11} from './events';
12
13class Events {
14 constructor() {
15
16 }
17}
18
19const EventsProto = Events.prototype;
20Object.assign(EventsProto, eventsFunObj);
21
22export {
23 Events
24}