UNPKG
artnet-dmx
Version:
latest (0.1.10)
0.1.10
0.1.9
0.1.8
0.1.7
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Art-Net DMX controller library
github.com/k28mrn/artnet-dmx
k28mrn/artnet-dmx
artnet-dmx
/
src
/
types.ts
12 lines
(10 loc)
•
255 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
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
; }