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 7d72f28 commit 565e77bCopy full SHA for 565e77b
typedoc-plugin-deno.ts
@@ -16,17 +16,17 @@ export class DenoPlugin extends ConverterComponent {
16
/** Triggered when the converter has finished resolving a project. */
17
private onEndResolve(context: Context) {
18
for (let signature of Object.values(context.project.reflections)) {
19
- if (!isSignature(signature)) {
20
- continue;
21
- }
22
-
23
const comment = signature.comment as Comment & I18nComment;
24
if (!comment) {
25
continue;
26
}
27
28
processi18nLineByLine(comment);
29
+ if (!isSignature(signature)) {
+ continue;
+ }
+
30
if (comment && comment.hasTag('returns_i18n')) {
31
comment.returns_i18n = comment.getTag('returns_i18n')!.text;
32
comment.removeTags('returns_i18n');
0 commit comments