nodered-grist/node-red-grist/document.js
2023-01-07 02:33:42 +01:00

8 lines
No EOL
220 B
JavaScript

module.exports = function(RED) {
function DocumentNode(n) {
RED.nodes.createNode(this,n);
this.docid = n.docid;
this.name = n.name;
}
RED.nodes.registerType("document",DocumentNode);
}