/wiki/TagType.wiki
http://jsdoc-toolkit.googlecode.com/ · Unknown · 23 lines · 16 code · 7 blank · 0 comment · 0 complexity · 88dfe8f09b23045b9d4b3f27d2993d5e MD5 · raw file
- #summary @type
- == 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() {
- }
- }}}