UNPKG

artnet-dmx

Version:

Art-Net DMX controller library

12 lines (10 loc) 255 B
import { SendStatus } from "./enums"; export interface OptionsProps { host?: string; port?: number; } export interface SendProps { universe?: number; data: Uint8Array; // 0-255 Value callback?: (status: SendStatus, message?: string) => void; }