Skip to content

Commit

Permalink
docs: fix getter jsdoc (missing @type)
Browse files Browse the repository at this point in the history
  • Loading branch information
Khaaz committed Feb 20, 2020
1 parent 6296f7c commit a1de3f4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Structures/Module.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ class Module extends Base {
* A Collection of all commands the module holds
*
* @readonly
* @type {Collection<Command>}
* @memberof Module
*/
get commands() {
Expand All @@ -118,6 +119,7 @@ class Module extends Base {
* A Collection of all listeners the module holds
*
* @readonly
* @type {Collection<Listener>}
* @memberof Module
*/
get listeners() {
Expand Down
2 changes: 2 additions & 0 deletions src/Structures/Stores/ARegistry.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ class ARegistry {
* Get the AxonClient
*
* @readonly
* @type {AxonClient}
* @memberof ARegistry
*/
get axon() {
Expand All @@ -51,6 +52,7 @@ class ARegistry {
* Get the size of the registry
*
* @readonly
* @type {Number}
* @memberof ARegistry
*/
get size() {
Expand Down

0 comments on commit a1de3f4

Please sign in to comment.