lifxlan
Version:
TypeScript library for controlling LIFX products over LAN
18 lines • 682 B
TypeScript
export declare const PORT = 56700;
export declare const BROADCAST_ADDRESS = "255.255.255.255";
export declare const PRODUCTS_URL = "https://raw.githubusercontent.com/LIFX/products/master/products.json";
export declare const NO_TARGET: Uint8Array<ArrayBuffer>;
export declare const ServiceType: {
readonly UDP: 1;
readonly RESERVED2: 2;
readonly RESERVED3: 3;
readonly RESERVED4: 4;
readonly RESERVED5: 5;
};
export type ServiceType = typeof ServiceType[keyof typeof ServiceType];
export declare const Direction: {
readonly RIGHT: 0;
readonly LEFT: 1;
};
export type Direction = typeof Direction[keyof typeof Direction];
//# sourceMappingURL=core.d.ts.map