UNPKG

artnet-dmx

Version:

Art-Net DMX controller library

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