UNPKG

node-red-contrib-samsung-tv-mk

Version:
14 lines (10 loc) 266 B
const { KEYS } = require('samsung-tv-control/lib/keys') function provideKeys(RED) { RED.httpAdmin.get('/samsungtv/keys', function (req, res, next) { res.send(JSON.stringify(KEYS)) next() }); } module.exports.provideKeys = provideKeys;