import {ev} from "./event/ev.js" import {MagicEventBase} from "./event/base.js" export function MagicEvent(type: string) { return class extends MagicEventBase { static readonly type = type static readonly target = ev(this).target } }