import type { Emitter } from "mitt"; import mitt from "mitt"; /** Các sự kiện công cộng toàn cầu cần thêm các loại ở đây*/ type Events = { openPanel: string; tagViewsChange: string; tagViewsShowModel: string; logoChange: boolean; changLayoutRoute: string; imageInfo: { img: HTMLImageElement; height: number; width: number; x: number; y: number; }; }; export const emitter: Emitter = mitt();