我可以从(function(global, factory) {
global.myModule = factory();
}(this, function() {
const privateMessage = 'secret';
function secret() {
return privateMessage;
}
function open() {
return 'Message: ' + secret();
}
return { open };
}));
window.myModule.open(); // Message: secret
// no way to directly access privateMessage or secret().
文件生成文档吗?
我有带有属性的自动生成的文件spring-configuration-metadata.json
。对于IDE中的自动完成功能很有用。但是我不会将文档提供给管理员。我可以给他们JSON文件,但是也许有些东西可以将JSON转换为HTML或其他?
我只想创建可以在spring-configuration-metadata.json
文件中覆盖的完整列表属性,然后将其传递给部署应用程序的人员。