artnet-dmx
Version:
Art-Net DMX controller library
11 lines (10 loc) • 296 B
text/typescript
export const EventType = {
Error: 'error',
} as const;
export type EventType = typeof EventType[keyof typeof EventType];
export const SendStatus = {
noChange: 'noChange',
success: 'success',
error: 'error',
} as const;
export type SendStatus = typeof SendStatus[keyof typeof SendStatus];