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 906cb4f commit e6776b3Copy full SHA for e6776b3
docs/source/api.js
@@ -179,6 +179,10 @@ function parse() {
179
case 'event':
180
case 'param':
181
ctx[tag.type] = (ctx[tag.type] || []);
182
+ // the following is required, because in newer "dox" version "null" is not included in "types" anymore, but a seperate property
183
+ if (tag.nullable) {
184
+ tag.types.push('null');
185
+ }
186
if (tag.types) {
187
tag.types = tag.types.join('|');
188
}
0 commit comments