Last active
January 31, 2018 17:23
-
-
Save deviantfero/694d99395471079d18c568d40a97b403 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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