Skip to content

Instantly share code, notes, and snippets.

@shibukawa
Created April 11, 2013 02:49
Show Gist options
  • Save shibukawa/5360259 to your computer and use it in GitHub Desktop.
Save shibukawa/5360259 to your computer and use it in GitHub Desktop.
Error case of JSDoc 3. It can't create link from @param type sections to external nested names.
/**
* @external ExternalModule
*/
/**
* @external ExternalModule.ExternalClass
*/
/**
* Test function.
* @param {external:ExternalModule.ExternalClass} param Parameter.
*/
function convert(param)
{
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment