jsdoc/templates/default/tmpl/returns.tmpl
2011-08-29 14:43:27 +02:00

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
}
}
?>