Any idea how to document a method parameter with YUIDoc, where the param is a vector, being a three-element array of numbers?
This is what I'm doing so far, describing the param as simply "Array(Number)":
/**
* Sets the color, which is a three-element array of double-precision numbers.
* @method setColor
* @param value {Array(Number)}
*/
this.setColor(value) {
//...
}
You can specify default value like this.