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
269 B

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