UNPKG

string-similarity-coloring

Version:

Color a given set of N strings into a set of M<N color classes

10 lines (9 loc) 247 B
declare type HSL = { hue: number; saturation: number; lightness: number; }; export declare type Color = HSL; export declare type ColorSet = Color[][]; export declare function isColorSet(o: any): o is ColorSet; export default ColorSet;