Skip to content

Commit

Permalink
Merge branch 'master' of github.com:pooltogether/v4-timelocks
Browse files Browse the repository at this point in the history
  • Loading branch information
kamescg committed Dec 21, 2021
2 parents b6d255e + 728c4f3 commit cb71608
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions templates/contract.hbs
@@ -1,5 +1,27 @@
{{{natspec.userdoc}}}
{{{natspec.devdoc}}}

{{#if structs}}
## Structs
{{/if}}
{{#each structs}}
### `{{name}}`
{{#each members}}
- {{type}} {{name}}
{{/each}}
{{/each}}

{{#if enums}}
## Enums
{{/if}}
{{#each enums}}
### `{{name}}`
All members: {{members}}
{{#each members}}
- {{.}}
{{/each}}
{{/each}}

{{#if functions}}
## Functions
{{/if}}
Expand Down

0 comments on commit cb71608

Please sign in to comment.