mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
29 lines
371 B
Cheetah
29 lines
371 B
Cheetah
<?js if (this.description) { ?>
|
|
<div class="param-desc">
|
|
<?js= description ?>
|
|
</div>
|
|
<?js } ?>
|
|
|
|
<?js
|
|
if (this.type) {
|
|
with(type) {
|
|
?>
|
|
|
|
<dl>
|
|
<dt>
|
|
Type
|
|
</dt>
|
|
<dd>
|
|
<?js
|
|
names.forEach(function(name, i) {
|
|
?>
|
|
<span class="param-type"><?js= htmlsafe(name) ?></span> <?js if (i < names.length-1) print('|'); ?>
|
|
<?js
|
|
});
|
|
?>
|
|
</dd>
|
|
</dl>
|
|
<?js
|
|
}
|
|
}
|
|
?> |