Skip to content
This repository has been archived by the owner on Jan 19, 2025. It is now read-only.

Commit

Permalink
fix api wrapper constructor params on jsdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
fersilva16 committed Jun 2, 2019
1 parent ff99344 commit 6859f08
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/structures/APIWrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
*/
module.exports = class APIWrapper {
/**
* @param {string} name - Name of API Wrapper
* @param {string[]} [envVars] - Required Environment Variables
* @param {Object} [options] - Options
* @param {string} options.name - Name
* @param {string[]} [options.envVars] - Required Environment Variables
*/
constructor (options = {}) {
this.name = options.name
Expand Down

0 comments on commit 6859f08

Please sign in to comment.