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.
1 parent c9d1687 commit ac10648Copy full SHA for ac10648
src/td/converter/plugins/ImplementsPlugin.ts
@@ -80,7 +80,9 @@ module td.converter
80
if (target instanceof models.SignatureReflection && target.parameters &&
81
source instanceof models.SignatureReflection && source.parameters) {
82
for (var index = 0, count = target.parameters.length; index < count; index++) {
83
- target.parameters[index].comment.copyFrom(source.parameters[index].comment);
+ if (target.parameters[index].comment) {
84
+ target.parameters[index].comment.copyFrom(source.parameters[index].comment);
85
+ }
86
}
87
88
0 commit comments