Created
March 15, 2021 05:22
-
-
Save debabratakarfa/916989d359f3fca793d9e3a92c1e2a9c to your computer and use it in GitHub Desktop.
Example for Documentation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Summary. (use period) | |
* | |
* Description. (use period) | |
* | |
* @since x.x.x | |
* @deprecated x.x.x Use new_function_name() instead. | |
* @access private | |
* | |
* @class | |
* @augments parent | |
* @mixes mixin | |
* | |
* @alias realName | |
* @memberof namespace | |
* | |
* @see Function/class relied on | |
* @link URL | |
* @global | |
* | |
* @fires eventName | |
* @fires className#eventName | |
* @listens event:eventName | |
* @listens className~event:eventName | |
* | |
* @param {type} var Description. | |
* @param {type} [var] Description of optional variable. | |
* @param {type} [var=default] Description of optional variable with default variable. | |
* @param {Object} objectVar Description. | |
* @param {type} objectVar.key Description of a key in the objectVar parameter. | |
* | |
* @yield {type} Yielded value description. | |
* | |
* @return {type} Return value description. | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Short description. (use period) | |
* | |
* @namespace realName | |
* @memberof parentNamespace | |
* | |
* @since x.x.x | |
* | |
* @property {type} key Description. | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment