@ginden/blinkstick-v2
Version:
Improved Blickstick API for Node.js
16 lines • 323 B
TypeScript
/**
* @summary Channel for BlinkStick Pro devices.
* @category Constants
* @enum
*/
export declare const Channel: {
readonly R: 0;
readonly G: 1;
readonly B: 2;
};
/**
* @category Constants
* @internal
*/
export type Channel = (typeof Channel)[keyof typeof Channel];
//# sourceMappingURL=channel.d.ts.map