UNPKG

node-hue-api

Version:
12 lines (11 loc) 213 B
export declare function rgbToXY(rgb: number[], colorGamut: Gamut): number[]; type XYValue = { x: number; y: number; }; type Gamut = { green: XYValue; red: XYValue; blue: XYValue; }; export {};