@callback Back

The @callback tag is mainly used for specified callback function that can be passed to other functions.

/**
 * other function
 * @param {otherCallback} cb - a callback method
 */
function other(cb) {
    /** ... */
    cb(200, 'Success');
}

/**
 * The callback for calling other methods
 * @callback otherCallback
 * @param {number} code
 * @param {string} message
 */
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.