fchat-rising/chat/event-bus.ts

10 lines
150 B
TypeScript
Raw Normal View History

2019-06-08 02:26:01 +00:00
import Vue from 'vue';
2019-07-06 16:49:19 +00:00
export interface EventBusEvent {
// tslint:disable: no-any
[key: string]: any;
}
2019-06-08 02:26:01 +00:00
export const EventBus = new Vue();