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