docs/typings(VoiceStateStore): document and type the class (#3294)

* Update index.d.ts

* Update Guild.js

* Update Guild.js

* docs/typings(VoiceStateStore): document and add typings
This commit is contained in:
Skillz4Killz
2019-07-04 10:20:28 -04:00
committed by SpaceEEC
parent b65a4f05da
commit 20d7b3de59
3 changed files with 13 additions and 0 deletions

View File

@@ -57,6 +57,10 @@ class Guild extends Base {
*/
this.presences = new PresenceStore(this.client);
/**
* A collection of voice states in this guild
* @type {VoiceStateStore<Snowflake, VoiceState>}
*/
this.voiceStates = new VoiceStateStore(this);
/**