0

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.

Oliver Watkins
  • 10,301
  • 19
  • 83
  • 168
  • All methods that have the same name as methods found in `@augments` (and multiple augments can be specified) are displayed as "implementing" the base methods, with links back. – user2864740 Nov 08 '14 at 08:31
  • http://stackoverflow.com/questions/4843528/how-to-jsdoc-multiple-inheritance-or-mixins – user2864740 Nov 08 '14 at 08:36

1 Answers1

2

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

krampstudio
  • 2,975
  • 1
  • 34
  • 53