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
In a few places (I'm looking at you this._loop) we use _ do denote private members. However in TypeScript _ prefixed variables means that they can be unused. Privacy is better expressed with the private keyword.