UNPKG

183 BTypeScriptView Raw
1export declare type JSONColorFormat = {
2 name: "color";
3 variant: "hex" | "rgb" | "hsl";
4};
5export declare function inferColor(value: string): JSONColorFormat | undefined;