How to document variadic arguments with jsdoc Permanently deleted user Created April 11, 2014 20:45 Hello. Is it possible to document variadic parameters with jsdoc?I tried:@param {...} va_args My descriptionBut it doesn't seem to work.
See http://stackoverflow.com/questions/4729516/correct-way-to-document-open-ended-argument-functions-in-jsdoc/4841722#4841722
/**
* @param {...number} var_args
*/
function test (var_args){}
works for me