We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7b78de8 + 9a3bd4a commit c9d1687Copy full SHA for c9d1687
bin/typedoc.js
@@ -5240,7 +5240,9 @@ var td;
5240
if (target instanceof td.models.SignatureReflection && target.parameters &&
5241
source instanceof td.models.SignatureReflection && source.parameters) {
5242
for (var index = 0, count = target.parameters.length; index < count; index++) {
5243
- target.parameters[index].comment.copyFrom(source.parameters[index].comment);
+ if (target.parameters[index].comment) {
5244
+ target.parameters[index].comment.copyFrom(source.parameters[index].comment);
5245
+ }
5246
}
5247
5248
0 commit comments