@iobroker/create-adapter
Version:
Command line utility to create customized ioBroker adapters
35 lines • 923 B
JavaScript
;
module.exports = (answers => {
const supportCustom = answers.adminFeatures && answers.adminFeatures.indexOf("custom") > -1;
if (!supportCustom) {
return;
}
const config = {
i18n: true,
type: "panel",
items: {
enabled: {
type: "checkbox",
label: "enabled",
newLine: true,
},
interval: {
type: "text",
label: "period of time",
newLine: true,
},
state: {
type: "text",
label: "new state",
newLine: true,
},
setAck: {
type: "checkbox",
label: "ack",
newLine: true,
},
},
};
return JSON.stringify(config, null, 4);
});
//# sourceMappingURL=jsonCustom.json.js.map