nodered-grist/node-red-grist/document.js
2023-01-07 03:38:09 +01:00

8 lines
No EOL
226 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("grist-document",DocumentNode);
}