You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@type {Type}
Property description...
@type Type
Property description...
Documents the type of a property, additionally marking the documented thing as a property.
The use of this tag is deprecated. It's only supported for backwards compatibility with old ext-doc. For new code always use the @property tag instead.
Example:
/** * @type {Number} * Current height of component. */height: 5,
Again for backwards compatibility the @type tag allows the curly braces to be left off:
/** * @type Number * Current height of component. */height: 5,