You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
263 B

3 years ago
import mitt, { Emitter } from 'mitt'
type Events = {
2 years ago
deviceUpgrade: any; // 设备升级
deviceLogUploadProgress: any // 设备日志上传
2 years ago
flightTaskWs: any // 机场任务消息
3 years ago
};
const emitter: Emitter<Events> = mitt<Events>()
export default emitter