@class Back

This tag is the same with @constructor

The tag @class, a.k.a @constructor is mainly used for marking a function as being a constructor, which means that callers need to use new statement to create an instance of such a method.

/**
* a constructor for Person objects
* @constructor
*/
function Person () {}

const person = new Person();
Empty Comments
Sign in GitHub

As the plugin is integrated with a code management system like GitLab or GitHub, you may have to auth with your account before leaving comments around this article.

Notice: This plugin has used Cookie to store your token with an expiration.