{{!
    Template for example-Apemanfile.js
}}/**
 * This is example Apemanfile to use "{{pkg.name}}".
{{#each see}} * @see {{{this}}}
{{/each}} */

"use strict";

module.exports = {
    $pkg: {/*...*/},
    $ui: {
        // Define your own ui.
        "my-ui-01": {
            // UI generation config for each path.
            "assets/public/my_ui_components": [
{{#with signature.example}}
                    require("{{../pkg.name}})({{#each args}}, {{/each}}{
{{#each options}}                       "{{{@key}}}": {{{this}}}{{#if @last}}{{else}},
{{/if}}{{/each}}
                    })
{{/with}}
            ]
        }
    }
};