You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 23, 2024. It is now read-only.
I noticed that in some cases, the typescript transpiler is changing this: (function (event) { to this: (function (Event_1) {
which also makes this line go from this: this._eventList[EventName] = new Event(new event.Delegate());
to this:this._eventList[EventName] = new Event(new Event_1.Delegate());
and finally this: if (args === void 0) { args = event.EventArgs.Empty; }
to this: if (args === void 0) { args = Event_1.EventArgs.Empty; }
Not sure where this Event_1 business is coming from, but should look into it. I nominate @jknewson.