aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typed-contracts-templates/partials/return_type.mustache
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-12-02 12:42:12 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-12-02 13:31:11 +0800
commit1e1c99d8d6f27c9da878e9ca4285691569051f3e (patch)
treeec0a33520f938a997c177a6ff1dbad6a5f45379d /packages/typed-contracts-templates/partials/return_type.mustache
parentc291419141b06814c3e6d662998b7eaa6d554528 (diff)
downloaddexon-sol-tools-1e1c99d8d6f27c9da878e9ca4285691569051f3e.tar
dexon-sol-tools-1e1c99d8d6f27c9da878e9ca4285691569051f3e.tar.gz
dexon-sol-tools-1e1c99d8d6f27c9da878e9ca4285691569051f3e.tar.bz2
dexon-sol-tools-1e1c99d8d6f27c9da878e9ca4285691569051f3e.tar.lz
dexon-sol-tools-1e1c99d8d6f27c9da878e9ca4285691569051f3e.tar.xz
dexon-sol-tools-1e1c99d8d6f27c9da878e9ca4285691569051f3e.tar.zst
dexon-sol-tools-1e1c99d8d6f27c9da878e9ca4285691569051f3e.zip
Add templates
Diffstat (limited to 'packages/typed-contracts-templates/partials/return_type.mustache')
-rw-r--r--packages/typed-contracts-templates/partials/return_type.mustache6
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/typed-contracts-templates/partials/return_type.mustache b/packages/typed-contracts-templates/partials/return_type.mustache
new file mode 100644
index 000000000..5366c8fb7
--- /dev/null
+++ b/packages/typed-contracts-templates/partials/return_type.mustache
@@ -0,0 +1,6 @@
+{{#outputs.singleReturnValue}}
+{{#returnType outputs.0.type}}{{/returnType}}
+{{/outputs.singleReturnValue}}
+{{^outputs.singleReturnValue}}
+[{{#each outputs}}{{#returnType type}}{{/returnType}}{{#unless @last}}, {{/unless}}{{/each}}]
+{{/outputs.singleReturnValue}}