I have a Model class (in nodejs) and I want to implement it from AuthorizationCodeModel.
I want WebStorm detect that my model implemented the interface and suggest me auto complete
Model:
/**
* @implements AuthorizationCodeModel
*/
class Model {
}
the @implements AuthorizationCodeModel is not working. How can I use JSDoc?