@deprecated module
Marks a comment as deprecated.
@deprecated {VERSION} DESCRIPTION
Specifies a deprecation warning for a particular version. Multiple
@deprecated
tags can be used on a single comment.
This warning adds to the deprecated tag on DocObjects.
Parameters
- VERSION
{STRING}
:The version the deprecation occurred within.
- DESCRIPTION
{STRING}
:Text describing the deprecation.
Use
/**
* @function
* @deprecated {1.0} This method has been replaced
* by [can.Model.parseModel].
*
* @param {String} name
*/