How to document mixins or multiple inheritance?
function Parent() {
}
Parent.prototype.parentTest = 5;
function Mixin() {
}
Mixin.prototype.mixinTest = 5;
function Child() {
}
Is there anything official from JsDoc? If not, how would you prefer it to be written?
Tower source
share