UNPKG

@aeroniemi/node-red-xled

Version:

Node-Red nodes for controlling the brightness/colour of Twinkly lights

8 lines (7 loc) 191 B
import { Node } from "node-red"; import { Light } from "xled2"; export interface xledServerNode extends Node { host: string; light: Light; } export default function (RED: any): void;