@access

Related

@public, @protected, @private

Syntax

@access <public | protected | private>

Overview

This tag specifies the access rule for a particular symbol. It's value can be "public", "protected",
or "private".

Example(s)

class Cache {
  constructor(value) {
    /**
     * @access protected
     */
    this._value = value;
  }
}
Powered by webdoc!