UNPKG

516 Btext/x-handlebars-templateView Raw
1
2/**
3 * {{pkg.description}}
4 * @namespace {{ pkg.name }}
5{{#each components}}
6{{#each classes}}
7 * @property {function} {{this}} - {{this}} component from "{{../module}}" module.
8{{/each}}
9{{/each}}
10*/
11
12'use strict'
13
14{{#each components}}
15const {{camelcase module}} = require('{{module}}'){{#if @last}} {{else}}
16{{/if}}
17{{/each}}
18
19{{#each components}}
20// --------------------------
21// {{module}}
22// --------------------------
23
24{{#each classes}}
25exports.{{this}} = {{camelcase ../module}}.{{this}}
26{{/each}}
27
28{{/each}}
\No newline at end of file