const Info = {
  {{#each _info}}
  {{@key}}: 
  {{#if (isObj this) }}
  {
    {{#each this}}
        {{@key}}: "{{this}}",
    {{/each}}
  },
  {{else}}"{{this}}",
  {{/if}}
  {{/each}}
};

{{{export}}} Info;
