mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-09 09:38:07 +08:00
20 lines
488 B
HTML
20 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}}
|