UNPKG

ntc-ts

Version:

"Name That Color" as a typescript library!

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