import type { Emitter } from 'mitt'; import mitt from 'mitt'; type Events = { resize: { detail: { width: number; height: number; }; }; openPanel: string; tagOnClick: string; tagViewsChange: string; tagViewsShowModel: string; logoChange: string; changLayoutRoute: string; }; export const emitter: Emitter = mitt();