Skip to content

Instantly share code, notes, and snippets.

@deviantfero
Last active January 31, 2018 17:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deviantfero/694d99395471079d18c568d40a97b403 to your computer and use it in GitHub Desktop.
Save deviantfero/694d99395471079d18c568d40a97b403 to your computer and use it in GitHub Desktop.
export default class Roulette {
private sessions : Map<string, Session>;
private unmatched : Set<string>;
constructor() {
   this.sessions = new Map();
this.unmatched = new Set();
}
// other methods
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment