mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
27 lines
419 B
HTML
27 lines
419 B
HTML
<@- if doc.methods @>
|
|
## Methods
|
|
<@- for method in doc.methods @>
|
|
|
|
<div id="<$ method.name $>"></div>
|
|
<h2>
|
|
<$ functionSyntax(method) $>
|
|
</h2>
|
|
|
|
<$ method.description $>
|
|
|
|
<@ if method.params @>
|
|
<$ paramTable(method.params) $>
|
|
<@ endif @>
|
|
|
|
<@ if method.this @>
|
|
#### Method's `this`
|
|
<$ method.this $>
|
|
<@ endif @>
|
|
|
|
<@ if method.returns @>
|
|
* Returns: <$ typeInfo(method.returns) $>
|
|
<@ endif @>
|
|
|
|
<@ endfor -@>
|
|
<@- endif -@>
|