The @type Tag
The @type tag allows you to document the type of value a variable refers to, or the type of value returned by a function.
Syntax
@type typeName
- typeName - Required: the name of the type.
Example
/**
* @type Color
*/
function getColor() {
}