Oliver Watkins
Oliver Watkins

Reputation: 13539

Is there an Implements or Extends annotation in JSDoc?

I know there is an abstract annotation, so I was expecting an annotation for the inverse. Ie a sub-type method that implements (or extends) and abstract method.

I can't seem to find any in the JSDoc reference.

Upvotes: 1

Views: 634

Answers (1)

krampstudio
krampstudio

Reputation: 3631

There is only the @augments annotation http://usejsdoc.org/tags-augments.html

Upvotes: 3

Related Questions