UNPKG

node-red-contrib-push

Version:

Push notifications for node-red

9 lines 287 B
module.exports = function (RED) { function APNTokenNode(config) { RED.nodes.createNode(this, config); this.key = config.key; this.keyId = config.keyId; this.teamId = config.teamId; } RED.nodes.registerType("apn-token", APNTokenNode); }