aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contract_templates/partials/return_type.handlebars
blob: 77d96e8c48f2bb7c74ef413c2432b153dcb3aff6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{{#if outputs.length}}
{{#singleReturnValue}}
{{#returnType outputs.0.type outputs.0.components}}{{/returnType}}
{{/singleReturnValue}}
{{^singleReturnValue}}
[{{#each outputs}}{{#returnType type components}}{{/returnType}}{{#unless @last}}, {{/unless}}{{/each}}]
{{/singleReturnValue}}
{{else}}
void
{{/if}}