Two questions:
First, does anyone know how to inherit part of some documentation? Specifically for an "options" object:
* @param {Object} opts
* @param {String} opts.effect Transition effect. fade|slide
* @param {String} opts.direction Direction to do the transition, when applicable. up|down|left|right
* @param {String|Number} opts.duration Transition duration in ms, or one of short|long
* @param {String|Function} opts.timing Transition timing function, or one of
Basically, I want that documentation in multiple methods, but I don't want to copy it to each method, and I want a common place to change it.
Second, If I can inherit the documentation some how, can I extend it? e.g. I want:
method foo:
opts.opt-a // inherited
opts.opt-b // inherited
opts.opt-c // inherited
opts.opt-d // local to this method