This commit is contained in:
discountry
2025-10-03 15:28:16 +08:00
parent d5c4b04746
commit fcb83bd16b
925 changed files with 165721 additions and 4 deletions
+29
View File
@@ -0,0 +1,29 @@
{{>deprecated~}}
{{>description~}}
{{>scope~}}
{{>summary~}}
{{>augments~}}
{{>implements~}}
{{>mixes~}}
{{>default~}}
{{>chainable~}}
{{>overrides~}}
{{>returns~}}
{{>category~}}
{{>throws~}}
{{>fires~}}
{{>this~}}
{{>access~}}
{{>readOnly~}}
{{>requires~}}
{{>customTags~}}
{{>see~}}
{{>since~}}
{{>version~}}
{{>authors~}}
{{>license~}}
{{>copyright~}}
{{>todo~}}
{{>params~}}
{{>properties~}}
{{>examples~}}
@@ -0,0 +1,3 @@
{{#if deprecated}}`DEPRECATED`
{{/if~}}
+4
View File
@@ -0,0 +1,4 @@
{{>header~}}
{{>body}}
##### Supported exchanges
{{>member-index-list~}}
+9
View File
@@ -0,0 +1,9 @@
<a name="{{name}}" id="{{getFragment this}}"></a>
{{#if exchange}}
{{>heading-indent}}[{{exchange}}](#{{getFragment this}})
{{else}}
{{>heading-indent}}{{name}}
{{/if~}}
@@ -0,0 +1,6 @@
{{#if (isFunction this)}}
* [{{exchange}}](/exchanges/{{exchange}}.md#{{getFragment this}})
{{/if}}
{{#indexChildren ~}}
{{>member-index-list~}}
{{/indexChildren}}
+9
View File
@@ -0,0 +1,9 @@
{{#children inherited=undefined ~}}
{{>header~}}
{{>body}}
```javascript
{{exchange}}.{{name}} ({{methodSig this}})
```
{{/children~}}
@@ -0,0 +1,12 @@
{{#if params}}
{{tableHead params "name|Param" "type|Type" "optional|Required" "description|Description" ~}}
{{#tableRow params "name" "type" "optional" "description" ~}}
| {{#if @col1}}{{name}} | {{/if~}}
{{#if @col2}}{{>linked-type-list types=(cleanNames type.names) delimiter=", " }} | {{/if~}}
{{#if @col3}}{{#unless optional}}Yes{{else}}No{{/unless}} | {{/if~}}
{{#if @col4}}{{{stripNewlines (inlineLinks description)}}} |{{/if}}
{{/tableRow}}
{{/if}}
+12
View File
@@ -0,0 +1,12 @@
{{#if returns}}
{{#if returns.[0].description~}}
**Returns**: {{#each returns~}}
{{#if type~}}
{{#if type.names}}{{>linked-type-list types=(cleanNames type.names) delimiter=" \| " ~}}{{/if}}
{{~#if description}} - {{{inlineLinks description}}}{{/if~}}
{{else~}}
{{{inlineLinks description}~}}
{{/if~}}
{{~/each}}
{{/if}}{{/if}}