Renamed modules

This commit is contained in:
2021-04-27 21:35:17 +02:00
parent cf82d85554
commit c52b113c6a
16 changed files with 13 additions and 13 deletions

View File

@@ -0,0 +1,21 @@
import { EditorRED } from "node-red";
import { Ts3ConfigCreds, Ts3ConfigEditorNodeProperties } from "../types";
declare const RED: EditorRED;
RED.nodes.registerType<Ts3ConfigEditorNodeProperties,Ts3ConfigCreds>('TS3Config',{
category: 'config',
color: '#a6bbcf',
defaults: {
name: {value:""},
host: { value: ""},
nickname: {value: "ServerQuery"}
},
credentials: {
username: {type: "text"},
password: {type: "password"}
},
label: function() {
return this.name || "TS3 Config";
}
});