Skip to content

Commit

Permalink
fix: add jsdoc for publish commands as well
Browse files Browse the repository at this point in the history
  • Loading branch information
wkillerud committed Jul 31, 2024
1 parent e989003 commit a2b51c8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions classes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ export default {
return new Login(opts).run();
},

/**
* @param {import('./publish/map.js').PublishMapOptions} opts
*/
map(opts) {
return new PublishMap(opts).run();
},
Expand All @@ -49,6 +52,9 @@ export default {
return new Ping(opts).run();
},

/**
* @param {import('./publish/package/index.js').PublishOptions} opts
*/
publish(opts) {
return new PublishPackage(opts).run();
},
Expand Down

0 comments on commit a2b51c8

Please sign in to comment.