fchat-rising/chat/event-bus.ts

10 lines
150 B
TypeScript

import Vue from 'vue';
export interface EventBusEvent {
// tslint:disable: no-any
[key: string]: any;
}
export const EventBus = new Vue();