Skip to content

Commit 71b865f

Browse files
committed
chore(dox): patch to support ANY types
1 parent f1fd405 commit 71b865f

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

patches/dox+1.0.0.patch

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
diff --git a/node_modules/dox/lib/dox.js b/node_modules/dox/lib/dox.js
2+
index be4786e..8fb9a0b 100644
3+
--- a/node_modules/dox/lib/dox.js
4+
+++ b/node_modules/dox/lib/dox.js
5+
@@ -450,6 +450,8 @@ exports.parseTagTypes = function(str, tag) {
6+
return [type.subject.name]
7+
} else if (type && type.value) {
8+
return transform(type.value);
9+
+ } else if (type && type.type === "ANY") {
10+
+ return ['*'];
11+
} else {
12+
return type.toString();
13+
}

0 commit comments

Comments
 (0)