Skip to content

Commit

Permalink
doc: Added JSDoc to NoResultsError
Browse files Browse the repository at this point in the history
Signed-off-by: Jaid <jaid.jsx@gmail.com>
  • Loading branch information
Jaid committed Dec 14, 2019
1 parent aab4585 commit 80b9e7e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ export const gotClient = got.extend({
},
})

class NoResultsError extends Error {
/**
* @class
* @extends Error
*/
export class NoResultsError extends Error {

constructor(...args) {
super(...args)
Expand Down

0 comments on commit 80b9e7e

Please sign in to comment.