Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Simple question, how do I document that "Mixed-type"? I know I could just list all possible types like {null|undefined|String|Number|Object} and end up finding myself missing one and making it overly complex. I tried using the Mixed keyword, but it popups errors in many IDEs such as WebStorm.

share|improve this question

1 Answer

up vote 4 down vote accepted

I found the way to do it:

/**
 * @param {*} foo
 */
function bar(foo) {}
share|improve this answer
Where did you find that? My search results can only verify that this will work for the Closure compiler. Is it 'official' JSDoc syntax? – Robin van Baalen Jan 29 at 15:55
@RobinvanBaalen Take a look at The ALL type the almost last: developers.google.com/closure/compiler/docs/… – yckart Mar 20 at 10:00
@yckart Like I said before; JSDoc != Closure compiler. – Robin van Baalen Mar 20 at 12:56
But gc is one of the major jsdoc-definers ;) Here's a good ressource about jsdoc and its background: wiki.servoy.com/display/public/DOCS/… – yckart Mar 20 at 13:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.