mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:02:35 +08:00
19 lines
488 B
HTML
19 lines
488 B
HTML
<h4 id={{name}}>{{name}} <a href="#{{name}}">Link</a></h4>
|
|
<p>{{{description}}}</p>
|
|
{{#if arguments.length}}
|
|
Parameters
|
|
<table>
|
|
{{#each arguments}}
|
|
<tr><td>{{name}}</td><td>{{type}}</td><td>{{{description}}}</td><td>{{isOptional}}</td></tr>
|
|
{{/each}}
|
|
</table>
|
|
{{/if}}
|
|
|
|
{{#if returnValues.length}}
|
|
Returns
|
|
<table>
|
|
{{#each returnValues}}
|
|
<tr><td>{{type}}</td><td>{{{description}}}</td></tr>
|
|
{{/each}}
|
|
</table>
|
|
{{/if}}
|