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 my
{null|undefined|String|Number|Object}
I found the way to do it:
/** * @param {*} foo */ function bar(foo) {}