UNPKG

node-red-contrib-powerbi

Version:

A PowerBI API interaction node-red module which allows to interact with PowerBI service.

9 lines 281 B
module.exports = function(RED) { function PowerBIConnectionNode(n) { RED.nodes.createNode(this,n); this.accesstoken = n.accesstoken; this.username = n.username; this.password = n.password; } RED.nodes.registerType('powerbi-connection', PowerBIConnectionNode); }