docs(Game): document possible values for type property

See #2865
This commit is contained in:
SpaceEEC
2018-10-04 13:31:26 +02:00
parent c6201ee41b
commit b92f8d9c06

View File

@@ -58,7 +58,11 @@ class Game {
this.name = data.name;
/**
* The type of the game status
* The type of the game status, its possible values:
* - 0: Playing
* - 1: Streaming
* - 2: Listening
* - 3: Watching
* @type {number}
*/
this.type = data.type;