#summary The @... tag == Usage == @... [{[_[ModifierReference modifiers]_] [_return_type_]}] memberName [_description_] == Description == Use this tag to specify secondary properties of a function parameter (@param) or return value (@return). This tag must follow immediately after an @return or @param tag. == Example == {{{ /** My function description @function {Object} myFunction @param {Function} someFunction Probably a callback function of some sort @... {Number} arg1 The first argument to someFunction @... {String} arg2 The second argument to someFunction @param {Object} someObject A data structure @... {Boolean} aBool A boolean property of someObject @... {Date} aDate A date property of someObject @return The dimensions of something (note: describing the returned Object here) @... {int} width @... {int} height */ }}} == Details == || Since || v1.6 || || See also || [TagParam @param], [TagReturn @return ] ||