UNPKG

ntc-ts

Version:

"Name That Color" as a typescript library!

10 lines (9 loc) 235 B
export declare type COLOR = Array<string | number>; export interface FORMATTED_COLOR { exactMatch: boolean; name: string; rgb: string | null; } export interface CACHED_COLOR { [key: string]: FORMATTED_COLOR; }